1. 1ed83ad bpo-40939: Remove the old parser (GH-20768) by Pablo Galindo · 4 years, 1 month ago
  2. 1bcc32f bpo-39465: Use _PyInterpreterState_GET() (GH-20788) by Victor Stinner · 4 years, 1 month ago
  3. d36cf5f bpo-40943: Replace PY_FORMAT_SIZE_T with "z" (GH-20781) by Victor Stinner · 4 years, 1 month ago
  4. e81f6e6 bpo-40910: Export Py_GetArgcArgv() function (GH-20721) by Victor Stinner · 4 years, 1 month ago
  5. 8f023a2 bpo-40854: Allow overriding sys.platlibdir via PYTHONPLATLIBDIR env-var (GH-20605) by Sandro Mani · 4 years, 1 month ago
  6. c6b292c bpo-29882: Add _Py_popcount32() function (GH-20518) by Victor Stinner · 4 years, 1 month ago
  7. f7c4e23 bpo-40724: Support setting buffer slots from type specs (GH-20648) by scoder · 4 years, 1 month ago
  8. e005ead bpo-40521: Make context free list per-interpreter (GH-20644) by Victor Stinner · 4 years, 1 month ago
  9. 78a02c2 bpo-40521: Make async gen free lists per-interpreter (GH-20643) by Victor Stinner · 4 years, 1 month ago
  10. 88ec919 bpo-40521: Make list free list per-interpreter (GH-20642) by Victor Stinner · 4 years, 1 month ago
  11. 3744ed2 bpo-40521: Make frame free list per-interpreter (GH-20638) by Victor Stinner · 4 years, 1 month ago
  12. 7daba6f bpo-40521: Make slice cache per-interpreter (GH-20637) by Victor Stinner · 4 years, 1 month ago
  13. 2ba5937 bpo-40521: Make float free list per-interpreter (GH-20636) by Victor Stinner · 4 years, 1 month ago
  14. 69ac6e5 bpo-40521: Make tuple free list per-interpreter (GH-20247) by Victor Stinner · 4 years, 1 month ago
  15. fa7ab6a bpo-40826: Add _PyOS_InterruptOccurred(tstate) function (GH-20599) by Victor Stinner · 4 years, 1 month ago
  16. 317bab0 PyOS_AfterFork_Child() pass tstate to _PyEval_ReInitThreads() (GH-20598) by Victor Stinner · 4 years, 1 month ago
  17. 26881c8 PyOS_AfterFork_Child() uses PyStatus (GH-20596) by Victor Stinner · 4 years, 1 month ago
  18. 033d10b bpo-40244: Remove XLC's support from the noreturn flag (GH-20588) by Batuhan Taskaya · 4 years, 1 month ago
  19. b4d5a5c bpo-39583: Remove superfluous "extern C" bits from Include/cpython/*.h (GH-18413) by Skip Montanaro · 4 years, 1 month ago
  20. 3026cad bpo-40826: Add _Py_EnsureTstateNotNULL() macro (GH-20571) by Victor Stinner · 4 years, 1 month ago
  21. 5f4b229d bpo-40792: Make the result of PyNumber_Index() always having exact type int. (GH-20443) by Serhiy Storchaka · 4 years, 2 months ago
  22. fe2978b bpo-39573: Convert Py_REFCNT and Py_SIZE to functions (GH-20429) by Victor Stinner · 4 years, 2 months ago
  23. 578c395 bpo-37999: No longer use __int__ in implicit integer conversions. (GH-15636) by Serhiy Storchaka · 4 years, 2 months ago
  24. ad3252b bpo-39573: Convert Py_TYPE() to a static inline function (GH-20290) by Dong-hee Na · 4 years, 2 months ago
  25. 7c30d12 bpo-40696: Fix a hang that can arise after gen.throw() (GH-20287) by Chris Jerdonek · 4 years, 2 months ago
  26. d4fe098 Python 3.10.0a0 (GH-20198) by Pablo Galindo · 4 years, 2 months ago
  27. da742ba bpo-31033: Improve the traceback for cancelled asyncio tasks (GH-19951) by Chris Jerdonek · 4 years, 2 months ago
  28. 1aa8767 Update code comment re: location of struct _is. (GH-20067) by Chris Jerdonek · 4 years, 2 months ago
  29. a482dc5 bpo-40602: Write unit tests for _Py_hashtable_t (GH-20091) by Victor Stinner · 4 years, 2 months ago
  30. 3d17c04 bpo-40521: Add PyInterpreterState.unicode (GH-20081) by Victor Stinner · 4 years, 2 months ago
  31. d6fb53f bpo-39465: Remove _PyUnicode_ClearStaticStrings() from C API (GH-20078) by Victor Stinner · 4 years, 2 months ago
  32. 5b0a303 bpo-40609: _Py_hashtable_t values become void* (GH-20065) by Victor Stinner · 4 years, 2 months ago
  33. d95bd42 bpo-40609: _tracemalloc allocates traces (GH-20064) by Victor Stinner · 4 years, 2 months ago
  34. 2d0a3d6 bpo-40609: Add destroy functions to _Py_hashtable (GH-20062) by Victor Stinner · 4 years, 2 months ago
  35. f9b3b58 bpo-40609: Remove _Py_hashtable_t.key_size (GH-20060) by Victor Stinner · 4 years, 2 months ago
  36. 9e2ca17 bpo-40609: Rewrite how _tracemalloc handles domains (GH-20059) by Victor Stinner · 4 years, 2 months ago
  37. f453221 bpo-40602: Add _Py_HashPointerRaw() function (GH-20056) by Victor Stinner · 4 years, 2 months ago
  38. 4c9ea09 bpo-38787: Add PyCFunction_CheckExact() macro for exact type checks (GH-20024) by scoder · 4 years, 2 months ago
  39. 7c6e970 bpo-40602: Optimize _Py_hashtable for pointer keys (GH-20051) by Victor Stinner · 4 years, 2 months ago
  40. 74ea6b5 bpo-40593: Improve syntax errors for invalid characters in source code. (GH-20033) by Serhiy Storchaka · 4 years, 2 months ago
  41. b617993 bpo-40602: Rename hashtable.h to pycore_hashtable.h (GH-20044) by Victor Stinner · 4 years, 2 months ago
  42. 8963a7f bpo-40545: Export _PyErr_GetTopmostException() function (GH-19978) by Victor Stinner · 4 years, 2 months ago
  43. e1becf4 bpo-38787: C API for module state access from extension methods (PEP 573) (GH-19936) by Petr Viktorin · 4 years, 2 months ago
  44. 091951a bpo-40528: Improve and clear several aspects of the ASDL definition code for the AST (GH-19952) by Batuhan Taskaya · 4 years, 2 months ago
  45. 7be4e35 bpo-40513: Per-interpreter GIL (GH-19943) by Victor Stinner · 4 years, 2 months ago
  46. e838a93 bpo-40522: _PyThreadState_Swap() sets autoTSSkey (GH-19939) by Victor Stinner · 4 years, 2 months ago
  47. 299b8c6 Revert "bpo-40513: Per-interpreter signals pending (GH-19924)" (GH-19932) by Victor Stinner · 4 years, 2 months ago
  48. 6351d9e bpo-40520: Remove redundant comment in pydebug.h (GH-19931) by Hai Shi · 4 years, 2 months ago
  49. 4e30ed3 bpo-40513: Per-interpreter recursion_limit (GH-19929) by Victor Stinner · 4 years, 2 months ago
  50. 0b1e330 bpo-40513: Per-interpreter gil_drop_request (GH-19927) by Victor Stinner · 4 years, 2 months ago
  51. 4e01946 bpo-40513: Per-interpreter signals pending (GH-19924) by Victor Stinner · 4 years, 2 months ago
  52. 846d8b2 bpo-40246: Revert reporting of invalid string prefixes (GH-19888) by Lysandros Nikolaou · 4 years, 2 months ago
  53. 03b7642 bpo-40334: Make the PyPegen* and PyParser* APIs more consistent (GH-19839) by Lysandros Nikolaou · 4 years, 2 months ago
  54. 252346a bpo-40453: Add PyConfig._isolated_subinterpreter (GH-19820) by Victor Stinner · 4 years, 2 months ago
  55. 7036477 bpo-40421: Add PyFrame_GetBack() function (GH-19765) by Victor Stinner · 4 years, 2 months ago
  56. ae00a5a bpo-40428: Remove PyTuple_ClearFreeList() function (GH-19769) by Victor Stinner · 4 years, 2 months ago
  57. a42ca74 bpo-40421: Add PyFrame_GetCode() function (GH-19757) by Victor Stinner · 4 years, 2 months ago
  58. b8f704d bpo-40421: Add Include/cpython/code.h header file (GH-19756) by Victor Stinner · 4 years, 2 months ago
  59. 7c59d7c bpo-40421: Add pyframe.h header file (GH-19755) by Victor Stinner · 4 years, 2 months ago
  60. 5da3526 Post 3.9.0a6 by Łukasz Langa · 4 years, 2 months ago
  61. d66685a Merge tag 'v3.9.0a6' by Łukasz Langa · 4 years, 2 months ago
  62. bc1c8af Python 3.9.0a6 by Łukasz Langa · 4 years, 3 months ago
  63. 2b74c83 bpo-40334: Support CO_FUTURE_BARRY_AS_BDFL in the new parser (GH-19721) by Pablo Galindo · 4 years, 3 months ago
  64. ebebb64 bpo-40334: Improve various PEG-Parser related stuff (GH-19669) by Lysandros Nikolaou · 4 years, 3 months ago
  65. 1def775 bpo-40334: Rename PyConfig.use_peg to _use_peg_parser (GH-19670) by Victor Stinner · 4 years, 3 months ago
  66. c5fc156 bpo-40334: PEP 617 implementation: New PEG parser for CPython (GH-19503) by Pablo Galindo · 4 years, 3 months ago
  67. 4454057 bpo-39562: Prevent collision of future and compiler flags (GH-19230) by Batuhan Taşkaya · 4 years, 3 months ago
  68. 1a1bd2e bpo-40302: Replace PY_INT64_T with int64_t (GH-19573) by Victor Stinner · 4 years, 3 months ago
  69. 1ae035b bpo-40302: Add pycore_byteswap.h header file (GH-19552) by Victor Stinner · 4 years, 3 months ago
  70. 9a4b38f bpo-40267: Fix message when last input character produces a SyntaxError (GH-19521) by Lysandros Nikolaou · 4 years, 3 months ago
  71. 62183b8 bpo-40268: Remove explicit pythread.h includes (#19529) by Victor Stinner · 4 years, 3 months ago
  72. 675d9a3 bpo-40170: Convert PyObject_IS_GC() macro to a function (GH-19464) by Hai Shi · 4 years, 3 months ago
  73. e560f90 bpo-40268: Move struct _gc_runtime_state to pycore_gc.h (GH-19515) by Victor Stinner · 4 years, 3 months ago
  74. 62f75fe bpo-40232: Update PyOS_AfterFork_Child() to use _PyThread_at_fork_reinit() (GH-19450) by Dong-hee Na · 4 years, 3 months ago
  75. 81a7be3 bpo-40268: Rename _PyInterpreterState_GET_UNSAFE() (GH-19509) by Victor Stinner · 4 years, 3 months ago
  76. 4a3fe08 bpo-40268: Include explicitly pycore_interp.h (GH-19505) by Victor Stinner · 4 years, 3 months ago
  77. 0c13e1f bpo-40241: Add pycore_interp.h header (GH-19499) by Victor Stinner · 4 years, 3 months ago
  78. 1c4cbdf bpo-40268: Add pycore_runtime.h header file (GH-19493) by Victor Stinner · 4 years, 3 months ago
  79. 0135598 bpo-40241: Add pycore_gc.h header file (GH-19494) by Victor Stinner · 4 years, 3 months ago
  80. da7933e bpo-40268: Add _PyInterpreterState_GetConfig() (GH-19492) by Victor Stinner · 4 years, 3 months ago
  81. 41d5b94 bpo-40246: Report a better error message for invalid string prefixes (GH-19476) by Lysandros Nikolaou · 4 years, 3 months ago
  82. f13072b bpo-40241: Add PyObject_GC_IsTracked and PyObject_GC_IsFinalized to the public C-API (GH-19461) by Pablo Galindo · 4 years, 3 months ago
  83. b54a99d bpo-40082: trip_signal() uses the main interpreter (GH-19441) by Victor Stinner · 4 years, 3 months ago
  84. cfc3c2f bpo-37127: Remove _pending_calls.finishing (GH-19439) by Victor Stinner · 4 years, 3 months ago
  85. dda5d6e bpo-40226: PyInterpreterState_Delete() deletes pending calls (GH-19436) by Victor Stinner · 4 years, 3 months ago
  86. ac2cfe6 Remove extraneous ')' in abstract.h (GH-19146) by Jimmy Yang · 4 years, 3 months ago
  87. 307b9d0 bpo-40170: Remove PyIndex_Check() macro (GH-19428) by Victor Stinner · 4 years, 3 months ago
  88. a15e260 bpo-40170: Add _PyIndex_Check() internal function (GH-19426) by Victor Stinner · 4 years, 3 months ago
  89. 45ec5b9 bpo-40170: PyType_HasFeature() now always calls PyType_GetFlags() (GH-19378) by Victor Stinner · 4 years, 3 months ago
  90. ef5c615 bpo-40170: Convert PyObject_CheckBuffer() macro to a function (GH-19376) by Victor Stinner · 4 years, 3 months ago
  91. 9205520 bpo-40170: PyObject_NEW() becomes an alias to PyObject_New() (GH-19379) by Victor Stinner · 4 years, 3 months ago
  92. 87255be bpo-40089: Add _at_fork_reinit() method to locks (GH-19195) by Victor Stinner · 4 years, 3 months ago
  93. 48b069a bpo-39481: Implementation for PEP 585 (#18239) by Guido van Rossum · 4 years, 3 months ago
  94. 38aefc5 bpo-40170: PyObject_GET_WEAKREFS_LISTPTR() becomes a function (GH-19377) by Victor Stinner · 4 years, 3 months ago
  95. 168660b bpo-40141: Add line and column information to ast.keyword nodes (GH-19283) by Pablo Galindo · 4 years, 3 months ago
  96. 17b4733 bpo-40130: _PyUnicode_AsKind() should not be exported. (GH-19265) by Serhiy Storchaka · 4 years, 3 months ago
  97. 0003c2d bpo-40096: Support __attribute__((__noreturn__)) on xlc (GH-19204) by Batuhan Taşkaya · 4 years, 3 months ago
  98. 7281898 bpo-38644: Pass tstate explicitly in signalmodule.c (GH-19184) by Victor Stinner · 4 years, 4 months ago
  99. 08faf00 bpo-38644: Add _PySys_Audit() which takes tstate (GH-19180) by Victor Stinner · 4 years, 4 months ago
  100. 79ceccd bpo-38410: Properly handle PySys_Audit() failures (GH-16657) by Zackery Spytz · 4 years, 4 months ago