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