1. 1a1bd2e bpo-40302: Replace PY_INT64_T with int64_t (GH-19573) by Victor Stinner · 4 years, 6 months ago
  2. 1ae035b bpo-40302: Add pycore_byteswap.h header file (GH-19552) by Victor Stinner · 4 years, 6 months ago
  3. 9a4b38f bpo-40267: Fix message when last input character produces a SyntaxError (GH-19521) by Lysandros Nikolaou · 4 years, 6 months ago
  4. 62183b8 bpo-40268: Remove explicit pythread.h includes (#19529) by Victor Stinner · 4 years, 6 months ago
  5. 675d9a3 bpo-40170: Convert PyObject_IS_GC() macro to a function (GH-19464) by Hai Shi · 4 years, 6 months ago
  6. e560f90 bpo-40268: Move struct _gc_runtime_state to pycore_gc.h (GH-19515) by Victor Stinner · 4 years, 6 months ago
  7. 62f75fe bpo-40232: Update PyOS_AfterFork_Child() to use _PyThread_at_fork_reinit() (GH-19450) by Dong-hee Na · 4 years, 6 months ago
  8. 81a7be3 bpo-40268: Rename _PyInterpreterState_GET_UNSAFE() (GH-19509) by Victor Stinner · 4 years, 6 months ago
  9. 4a3fe08 bpo-40268: Include explicitly pycore_interp.h (GH-19505) by Victor Stinner · 4 years, 6 months ago
  10. 0c13e1f bpo-40241: Add pycore_interp.h header (GH-19499) by Victor Stinner · 4 years, 6 months ago
  11. 1c4cbdf bpo-40268: Add pycore_runtime.h header file (GH-19493) by Victor Stinner · 4 years, 6 months ago
  12. 0135598 bpo-40241: Add pycore_gc.h header file (GH-19494) by Victor Stinner · 4 years, 6 months ago
  13. da7933e bpo-40268: Add _PyInterpreterState_GetConfig() (GH-19492) by Victor Stinner · 4 years, 7 months ago
  14. 41d5b94 bpo-40246: Report a better error message for invalid string prefixes (GH-19476) by Lysandros Nikolaou · 4 years, 7 months ago
  15. f13072b bpo-40241: Add PyObject_GC_IsTracked and PyObject_GC_IsFinalized to the public C-API (GH-19461) by Pablo Galindo · 4 years, 7 months ago
  16. b54a99d bpo-40082: trip_signal() uses the main interpreter (GH-19441) by Victor Stinner · 4 years, 7 months ago
  17. cfc3c2f bpo-37127: Remove _pending_calls.finishing (GH-19439) by Victor Stinner · 4 years, 7 months ago
  18. dda5d6e bpo-40226: PyInterpreterState_Delete() deletes pending calls (GH-19436) by Victor Stinner · 4 years, 7 months ago
  19. ac2cfe6 Remove extraneous ')' in abstract.h (GH-19146) by Jimmy Yang · 4 years, 7 months ago
  20. 307b9d0 bpo-40170: Remove PyIndex_Check() macro (GH-19428) by Victor Stinner · 4 years, 7 months ago
  21. a15e260 bpo-40170: Add _PyIndex_Check() internal function (GH-19426) by Victor Stinner · 4 years, 7 months ago
  22. 45ec5b9 bpo-40170: PyType_HasFeature() now always calls PyType_GetFlags() (GH-19378) by Victor Stinner · 4 years, 7 months ago
  23. ef5c615 bpo-40170: Convert PyObject_CheckBuffer() macro to a function (GH-19376) by Victor Stinner · 4 years, 7 months ago
  24. 9205520 bpo-40170: PyObject_NEW() becomes an alias to PyObject_New() (GH-19379) by Victor Stinner · 4 years, 7 months ago
  25. 87255be bpo-40089: Add _at_fork_reinit() method to locks (GH-19195) by Victor Stinner · 4 years, 7 months ago
  26. 48b069a bpo-39481: Implementation for PEP 585 (#18239) by Guido van Rossum · 4 years, 7 months ago
  27. 38aefc5 bpo-40170: PyObject_GET_WEAKREFS_LISTPTR() becomes a function (GH-19377) by Victor Stinner · 4 years, 7 months ago
  28. 168660b bpo-40141: Add line and column information to ast.keyword nodes (GH-19283) by Pablo Galindo · 4 years, 7 months ago
  29. 17b4733 bpo-40130: _PyUnicode_AsKind() should not be exported. (GH-19265) by Serhiy Storchaka · 4 years, 7 months ago
  30. 0003c2d bpo-40096: Support __attribute__((__noreturn__)) on xlc (GH-19204) by Batuhan Taşkaya · 4 years, 7 months ago
  31. 7281898 bpo-38644: Pass tstate explicitly in signalmodule.c (GH-19184) by Victor Stinner · 4 years, 7 months ago
  32. 08faf00 bpo-38644: Add _PySys_Audit() which takes tstate (GH-19180) by Victor Stinner · 4 years, 7 months ago
  33. 79ceccd bpo-38410: Properly handle PySys_Audit() failures (GH-16657) by Zackery Spytz · 4 years, 7 months ago
  34. 5c3cda0 bpo-39947: Add PyThreadState_GetID() function (GH-19163) by Victor Stinner · 4 years, 7 months ago
  35. 0e427c6 bpo-39947: Add _PyThreadState_GetDict() function (GH-19160) by Victor Stinner · 4 years, 7 months ago
  36. 87d3b9d bpo-39882: Add _Py_FatalErrorFormat() function (GH-19157) by Victor Stinner · 4 years, 7 months ago
  37. 5804f87 bpo-20526: Fix PyThreadState_Clear(): don't decref frame (GH-19120) by Victor Stinner · 4 years, 7 months ago
  38. 7979298 Post 3.9.0a5 by Łukasz Langa · 4 years, 7 months ago
  39. dcd4c4f Python 3.9.0a5 by Łukasz Langa · 4 years, 7 months ago
  40. 05e4a29 bpo-40024: Add PyModule_AddType() helper function (GH-19088) by Dong-hee Na · 4 years, 7 months ago
  41. 6723e93 bpo-39946: Remove _PyThreadState_GetFrame (GH-19094) by Victor Stinner · 4 years, 7 months ago
  42. fd1e1a1 bpo-39947: Add PyThreadState_GetFrame() function (GH-19092) by Victor Stinner · 4 years, 7 months ago
  43. d831688 bpo-40010: Optimize pending calls in multithreaded applications (GH-19091) by Victor Stinner · 4 years, 7 months ago
  44. d2a8e5b bpo-40010: COMPUTE_EVAL_BREAKER() checks for subinterpreter (GH-19087) by Victor Stinner · 4 years, 7 months ago
  45. 50e6e99 bpo-39984: Move pending calls to PyInterpreterState (GH-19066) by Victor Stinner · 4 years, 7 months ago
  46. d112c60 bpo-39220: Do not optimise annotation if 'from __future__ import annotations' is used (GH-17866) by Pablo Galindo · 4 years, 7 months ago
  47. 8849e59 bpo-39984: trip_signal() uses PyGILState_GetThisThreadState() (GH-19061) by Victor Stinner · 4 years, 7 months ago
  48. 56bfdeb bpo-39984: Pass tstate to _PyEval_SignalAsyncExc() (GH-19049) by Victor Stinner · 4 years, 7 months ago
  49. 23ef89d bpo-39984: _PyThreadState_DeleteCurrent() takes tstate (GH-19051) by Victor Stinner · 4 years, 7 months ago
  50. 6b97598 bpo-39988: Remove ast.AugLoad and ast.AugStore node classes. (GH-19038) by Serhiy Storchaka · 4 years, 7 months ago
  51. dab8423 bpo-39984: Add PyInterpreterState.ceval (GH-19047) by Victor Stinner · 4 years, 7 months ago
  52. 87ec86c bpo-37207: Add _PyArg_NoKwnames() helper function (GH-18980) by Dong-hee Na · 4 years, 7 months ago
  53. 8689209 bpo-39969: Remove ast.Param node class as is no longer used (GH-19020) by Batuhan Taşkaya · 4 years, 7 months ago
  54. faf626b Make cpython/abstract.h compatible with C90 (#18481) by Peter Eisentraut · 4 years, 7 months ago
  55. 3a8c562 Revert "bpo-39087: Add _PyUnicode_GetUTF8Buffer()" (GH-18985) by Inada Naoki · 4 years, 8 months ago
  56. c7ad974 bpo-39087: Add _PyUnicode_GetUTF8Buffer() (GH-17659) by Inada Naoki · 4 years, 8 months ago
  57. 8fb02b6 bpo-39947: Add PyThreadState_GetInterpreter() (GH-18981) by Victor Stinner · 4 years, 8 months ago
  58. be79373 bpo-39947: Add PyInterpreterState_Get() function (GH-18979) by Victor Stinner · 4 years, 8 months ago
  59. 38965ec bpo-39947: Hide implementation detail of trashcan macros (GH-18971) by Victor Stinner · 4 years, 8 months ago
  60. 309d7cc bpo-35370: Add _PyEval_SetTrace() function (GH-18975) by Victor Stinner · 4 years, 8 months ago
  61. 224481a bpo-39947: Move Py_EnterRecursiveCall() to internal C API (GH-18972) by Victor Stinner · 4 years, 8 months ago
  62. 0b72b23 bpo-38500: Add _PyInterpreterState_SetEvalFrameFunc() (GH-17340) by Victor Stinner · 4 years, 8 months ago
  63. 4e53abb bpo-38631: _PyGILState_Init() returns PyStatus (GH-18908) by Victor Stinner · 4 years, 8 months ago
  64. 13d52c2 bpo-34822: Simplify AST for subscription. (GH-9605) by Serhiy Storchaka · 4 years, 8 months ago
  65. b4698ec bpo-39877: Deprecate PyEval_InitThreads() (GH-18892) by Victor Stinner · 4 years, 8 months ago
  66. 175a704 bpo-39877: PyGILState_Ensure() don't call PyEval_InitThreads() (GH-18891) by Victor Stinner · 4 years, 8 months ago
  67. 111e4ee bpo-39877: Py_Initialize() pass tstate to PyEval_InitThreads() (GH-18884) by Victor Stinner · 4 years, 8 months ago
  68. 3225b9f bpo-39877: Remove useless PyEval_InitThreads() calls (GH-18883) by Victor Stinner · 4 years, 8 months ago
  69. eebaa9b bpo-38249: Expand Py_UNREACHABLE() to __builtin_unreachable() in the release mode. (GH-16329) by Serhiy Storchaka · 4 years, 8 months ago
  70. 9e5d30c bpo-39882: Py_FatalError() logs the function name (GH-18819) by Victor Stinner · 4 years, 8 months ago
  71. 7b3c252 bpo-39877: _PyRuntimeState.finalizing becomes atomic (GH-18816) by Victor Stinner · 4 years, 8 months ago
  72. 8767ce9 bpo-39573: Make Py_IS_TYPE() take constant parameters (GH-18799) by Andy Lester · 4 years, 8 months ago
  73. d82e469 bpo-39639: Remove the AST "Suite" node and associated code (GH-18513) by Batuhan Taşkaya · 4 years, 8 months ago
  74. dffe4c0 bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601) by Andy Lester · 4 years, 8 months ago
  75. be501ca bpo-39702: Relax grammar restrictions on decorators (PEP 614) (GH-18570) by Brandt Bucher · 4 years, 8 months ago
  76. 66b7973 bpo-39796: Fix _warnings module initialization (GH-18739) by Victor Stinner · 4 years, 8 months ago
  77. 541e0ff Post 3.9.0a4 by Łukasz Langa · 4 years, 8 months ago
  78. 6e02691 Python 3.9.0a4 by Łukasz Langa · 4 years, 8 months ago
  79. 1b55b65 bpo-39573: Clean up modules and headers to use Py_IS_TYPE() function (GH-18521) by Dong-hee Na · 4 years, 8 months ago
  80. d212c3c bpo-39573: PyXXX_Check() macros use Py_IS_TYPE() (GH-18508) by Dong-hee Na · 4 years, 8 months ago
  81. d905df7 bpo-39573: Add Py_IS_TYPE() function (GH-18488) by Dong-hee Na · 4 years, 8 months ago
  82. 968dcd9 bpo-39573: Fix bad copy-paste in Py_SET_SIZE (GH-18496) by Brandt Bucher · 4 years, 8 months ago
  83. 8c3aee6 bpo-35134: Add Include/cpython/fileutils.h header file (GH-18493) by Victor Stinner · 4 years, 9 months ago
  84. 98921ae bpo-35134: Add Include/cpython/bytesobject.h file (GH-18494) by Victor Stinner · 4 years, 9 months ago
  85. e9e7d28 bpo-35081: Move dtoa.h header to the internal C API (GH-18489) by Victor Stinner · 4 years, 9 months ago
  86. 45876a9 bpo-35081: Move bytes_methods.h to the internal C API (GH-18492) by Victor Stinner · 4 years, 9 months ago
  87. ffd9753 bpo-39245: Switch to public API for Vectorcall (GH-18460) by Petr Viktorin · 4 years, 9 months ago
  88. b10dc3e bpo-39573: Add Py_SET_SIZE() function (GH-18400) by Victor Stinner · 4 years, 9 months ago
  89. bec4186 bpo-35134: Create Include/cpython/listobject.h (GH-18395) by Victor Stinner · 4 years, 9 months ago
  90. d2ec81a bpo-39573: Add Py_SET_TYPE() function (GH-18394) by Victor Stinner · 4 years, 9 months ago
  91. a102ed7 bpo-39573: Use Py_TYPE() macro in Python and Include directories (GH-18391) by Victor Stinner · 4 years, 9 months ago
  92. f95cd19 bpo-39571: Fix clang warning on PyTypeObject typedef (GH-18385) by Victor Stinner · 4 years, 9 months ago
  93. c86a112 bpo-39573: Add Py_SET_REFCNT() function (GH-18389) by Victor Stinner · 4 years, 9 months ago
  94. 3f563ce bpo-39245: Make Vectorcall C API public (GH-17893) by Petr Viktorin · 4 years, 9 months ago
  95. 3d06953 bpo-39127: Make _Py_HashPointer's argument be const (GH-17690) by Andy Lester · 4 years, 9 months ago
  96. 58f4e1a bpo-39542: Declare _Py_AddToAllObjects() in pycore_object.h (GH-18368) by Victor Stinner · 4 years, 9 months ago
  97. bf305cc Add PyInterpreterState.fs_codec.utf8 (GH-18367) by Victor Stinner · 4 years, 9 months ago
  98. 0e4e735 bpo-39542: Define PyTypeObject earlier in object.h (GH-18366) by Victor Stinner · 4 years, 9 months ago
  99. 509dd90 bpo-39542: Convert PyType_Check() to static inline function (GH-18364) by Victor Stinner · 4 years, 9 months ago
  100. f58bd7c bpo-39542: Make PyObject_INIT() opaque in limited C API (GH-18363) by Victor Stinner · 4 years, 9 months ago