1. 2de5097 bpo-26131: Deprecate usage of load_module() (GH-23469) by Brett Cannon · 4 years, 8 months ago
  2. eaccc12 bpo-42246: Don't forget the entry block when ensuring that all exits have a line number (GH-23636) by Mark Shannon · 4 years, 8 months ago
  3. 99b5944 bpo-42521: Add note about 'Python -d' only working on debug builds (GH-23607) by Pablo Galindo · 4 years, 8 months ago
  4. 5977a79 bpo-42246: Make sure that line number is correct after a return, as required by PEP 626 (GH-23495) by Mark Shannon · 4 years, 8 months ago
  5. 4e7a69b bpo-42500: Fix recursion in or after except (GH-23568) by Mark Shannon · 4 years, 8 months ago
  6. 46bd5ed bpo-40939: Restore some stable API functions incorrectly deleted (GH-23606) by Pablo Galindo · 4 years, 8 months ago
  7. 32bd68c bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587) by Victor Stinner · 4 years, 8 months ago
  8. 00d7abd bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586) by Victor Stinner · 4 years, 8 months ago
  9. 7301979 bpo-42202: Store func annotations as a tuple (GH-23316) by Yurii Karabas · 4 years, 9 months ago
  10. 14d81dc bpo-42260: Improve error handling in _PyConfig_FromDict (GH-23488) by Serhiy Storchaka · 4 years, 9 months ago
  11. 3be8e22 bpo-42403: Use @staticmethod in importlib (GH-23395) by Victor Stinner · 4 years, 9 months ago
  12. 3390347 bpo-42403: Simplify importlib external bootstrap (GH-23397) by Victor Stinner · 4 years, 9 months ago
  13. 6f4635f bpo-1635741: Port _warnings to the multi-phase init (GH-23379) by Victor Stinner · 4 years, 9 months ago
  14. 6223071 bpo-1635741: Convert _imp to multi-phase init (GH-23378) by Victor Stinner · 4 years, 9 months ago
  15. 07f2ade bpo-40998: Address compiler warnings found by ubsan (GH-20929) by Christian Heimes · 4 years, 9 months ago
  16. d1e38d4 bpo-40998: Fix a refleak in create_filter() (GH-23365) by Victor Stinner · 4 years, 9 months ago
  17. 29aa624 bpo-41686: Move _Py_RestoreSignals() to signalmodule.c (GH-23353) by Victor Stinner · 4 years, 9 months ago
  18. 266b462 bpo-42349: Compiler clean up. More yak-shaving for PEP 626. (GH-23267) by Mark Shannon · 4 years, 9 months ago
  19. 296a796 bpo-41713: Remove PyOS_InitInterrupts() function (GH-23342) by Victor Stinner · 4 years, 9 months ago
  20. ae6cd7c bpo-37205: time.time() cannot fail with fatal error (GH-23314) by Victor Stinner · 4 years, 9 months ago
  21. 3df5c68 bpo-37205: time.perf_counter() and time.monotonic() are system-wide (GH-23284) by Victor Stinner · 4 years, 9 months ago
  22. d2e94bb bpo-42131: Add PEP 451-related methods to zipimport (GH-23187) by Brett Cannon · 4 years, 9 months ago
  23. d96a7a8 bpo-42296: On Windows, fix CTRL+C regression (GH-23257) by Victor Stinner · 4 years, 9 months ago
  24. fd009e6 bpo-42246: Fix memory leak in compiler (GH-23256) by Mark Shannon · 4 years, 9 months ago
  25. cc75ab7 bpo-42246: Eliminate jumps to exit blocks by copying those blocks. (#23251) by Mark Shannon · 4 years, 9 months ago
  26. ef75a62 bpo-42260: Initialize time and warnings earlier at startup (GH-23249) by Victor Stinner · 4 years, 9 months ago
  27. c640915 Bump magic number. (GH-23245) by Mark Shannon · 4 years, 9 months ago
  28. 877df85 bpo-42246: Partial implementation of PEP 626. (GH-23113) by Mark Shannon · 4 years, 9 months ago
  29. ace3f9a bpo-42260: Fix _PyConfig_Read() if compute_path_config=0 (GH-23220) by Victor Stinner · 4 years, 9 months ago
  30. 9e1b828 bpo-42260: Compute the path config in the main init (GH-23211) by Victor Stinner · 4 years, 9 months ago
  31. 4176193 bpo-41100: Support macOS 11 and Apple Silicon (GH-22855) by Ronald Oussoren · 4 years, 9 months ago
  32. 8805a4d bpo-42282: Fold constants inside named expressions (GH-23190) by Nick Coghlan · 4 years, 9 months ago
  33. dc42af8 bpo-42260: PyConfig_Read() only parses argv once (GH-23168) by Victor Stinner · 4 years, 9 months ago
  34. f3cb814 bpo-42260: Add _PyConfig_FromDict() (GH-23167) by Victor Stinner · 4 years, 9 months ago
  35. 80449f2 bpo-42266: Handle monkey-patching descriptors in LOAD_ATTR cache (GH-23157) by Pablo Galindo · 4 years, 9 months ago
  36. 048a356 bpo-42260: Add _PyInterpreterState_SetConfig() (GH-23158) by Victor Stinner · 4 years, 9 months ago
  37. af1d64d bpo-42260: Main init modify sys.flags in-place (GH-23150) by Victor Stinner · 4 years, 9 months ago
  38. 58ca33b bpo-1635741: Fix ref leak in _PyWarnings_Init() error path (GH-23151) by Victor Stinner · 4 years, 9 months ago
  39. 18ce7f1 bpo-1635741: _ast uses PyModule_AddObjectRef() (GH-23146) by Victor Stinner · 4 years, 9 months ago
  40. 988f1ec bpo-1635741: _contextvars uses PyModule_AddType() (GH-23147) by Victor Stinner · 4 years, 9 months ago
  41. 8021875 bpo-1635741: Add PyModule_AddObjectRef() function (GH-23122) by Victor Stinner · 4 years, 9 months ago
  42. 3529718 bpo-42236: os.device_encoding() respects UTF-8 Mode (GH-23119) by Victor Stinner · 4 years, 9 months ago
  43. fd957c1 bpo-41796: Call _PyAST_Fini() earlier to fix a leak (GH-23131) by Victor Stinner · 4 years, 9 months ago
  44. 45df61f bpo-26789: Fix logging.FileHandler._open() at exit (GH-23053) by Victor Stinner · 4 years, 9 months ago
  45. 5cf4782 bpo-41796: Make _ast module state per interpreter (GH-23024) by Victor Stinner · 4 years, 9 months ago
  46. 4b9aad4 bpo-42236: Enhance init and encoding documentation (GH-23109) by Victor Stinner · 4 years, 9 months ago
  47. 64366fa bpo-41435: Add sys._current_exceptions() function (GH-21689) by Julien Danjou · 4 years, 9 months ago
  48. e662c39 bpo-42236: Use UTF-8 encoding if nl_langinfo(CODESET) fails (GH-23086) by Victor Stinner · 4 years, 9 months ago
  49. 82458b6 bpo-42236: Enhance _locale._get_locale_encoding() (GH-23083) by Victor Stinner · 4 years, 9 months ago
  50. 710e826 bpo-42208: Add _Py_GetLocaleEncoding() (GH-23050) by Victor Stinner · 4 years, 9 months ago
  51. eba5bf2 bpo-42208: Call GC collect earlier in PyInterpreterState_Clear() (GH-23044) by Victor Stinner · 4 years, 9 months ago
  52. dff1ad5 bpo-42208: Move _PyImport_Cleanup() to pylifecycle.c (GH-23040) by Victor Stinner · 4 years, 9 months ago
  53. 8b34148 bpo-42208: Pass tstate to _PyGC_CollectNoFail() (GH-23038) by Victor Stinner · 4 years, 10 months ago
  54. 0564aaf bpo-42099: Fix reference to ob_type in unionobject.c and ceval (GH-22829) by Neil Schemenauer · 4 years, 10 months ago
  55. c9bc290 bpo-42161: Use _PyLong_GetZero() and _PyLong_GetOne() (GH-22995) by Victor Stinner · 4 years, 10 months ago
  56. 920cb64 bpo-42157: unicodedata avoids references to UCD_Type (GH-22990) by Victor Stinner · 4 years, 10 months ago
  57. 47e1afd bpo-1635741: _PyUnicode_Name_CAPI moves to internal C API (GH-22713) by Victor Stinner · 4 years, 10 months ago
  58. b510e10 bpo-42152: Use PyDict_Contains and PyDict_SetDefault if appropriate. (GH-22986) by Serhiy Storchaka · 4 years, 10 months ago
  59. fb5db7e bpo-42006: Stop using PyDict_GetItem, PyDict_GetItemString and _PyDict_GetItemId. (GH-22648) by Serhiy Storchaka · 4 years, 10 months ago
  60. f231203 bpo-38324: Fix test__locale.py Windows failures (GH-20529) by TIGirardi · 4 years, 10 months ago
  61. 109826c bpo-42093: Add opcode cache for LOAD_ATTR (GH-22803) by Pablo Galindo · 4 years, 10 months ago
  62. 1dd6d95 closes bpo-42030: Remove legacy AIX dynload support (GH-22717) by Kevin Adler · 4 years, 10 months ago
  63. c9f696c bpo-41919, test_codecs: Move codecs.register calls to setUp() (GH-22513) by Hai Shi · 4 years, 10 months ago
  64. 2d2af32 bpo-41894: Fix UnicodeDecodeError while loading native module (GH-22466) by Kevin Adler · 4 years, 10 months ago
  65. 0cafcd3 closes bpo-42029: Remove dynload_dl (GH-22687) by Kevin Adler · 4 years, 10 months ago
  66. 7992579 bpo-40422: Move _Py_closerange to fileutils.c (GH-22680) by Kyle Evans · 4 years, 10 months ago
  67. 8287aad bpo-41993: Fix possible issues in remove_module() (GH-22631) by Serhiy Storchaka · 4 years, 10 months ago
  68. fa1d83d bpo-42002: Clean up initialization of the sys module. (GH-22642) by Serhiy Storchaka · 4 years, 10 months ago
  69. 22220ae bpo-38605: bump the magic number for 'annotations' future (#22630) by Batuhan Taskaya · 4 years, 10 months ago
  70. 98c4433 bpo-41991: Remove _PyObject_HasAttrId (GH-22629) by Serhiy Storchaka · 4 years, 10 months ago
  71. 02a1603 bpo-42000: Cleanup the AST related C-code (GH-22641) by Batuhan Taskaya · 4 years, 10 months ago
  72. 037245c bpo-41756: Add PyIter_Send function (#22443) by Vladimir Matveev · 4 years, 10 months ago
  73. 044a104 bpo-38605: Make 'from __future__ import annotations' the default (GH-20434) by Batuhan Taskaya · 4 years, 10 months ago
  74. dcc5421 bpo-41936. Remove macros Py_ALLOW_RECURSION/Py_END_ALLOW_RECURSION (GH-22552) by Serhiy Storchaka · 4 years, 10 months ago
  75. bd0a08e bpo-21955: Change my nickname in BINARY_ADD comment (GH-22481) by Victor Stinner · 4 years, 10 months ago
  76. 17b5be0 bpo-41670: Remove outdated predict macro invocation. (GH-22026) by Mark Shannon · 4 years, 11 months ago
  77. d332e7b bpo-41842: Add codecs.unregister() function (GH-22360) by Hai Shi · 4 years, 11 months ago
  78. 02d126a bpo-39934: Account for control blocks in 'except' in compiler. (GH-22395) by Mark Shannon · 4 years, 11 months ago
  79. b7d8d8d bpo-40941: Fix stackdepth compiler warnings (GH-22377) by Victor Stinner · 4 years, 11 months ago
  80. 71f2ff4 bpo-40941: Fix fold_tuple_on_constants() compiler warnings (GH-22378) by Victor Stinner · 4 years, 11 months ago
  81. 19c3ac9 bpo-41834: Remove _Py_CheckRecursionLimit variable (GH-22359) by Victor Stinner · 4 years, 11 months ago
  82. c322948 bpo-41819: Fix compiler warning in init_dump_ascii_wstr() (GH-22332) by Samuel Marks · 4 years, 11 months ago
  83. 2b05361 bpo-41756: Introduce PyGen_Send C API (GH-22196) by Vladimir Matveev · 5 years ago
  84. a5634c4 bpo-41746: Add type information to asdl_seq objects (GH-22223) by Pablo Galindo · 5 years ago
  85. e5fbe0c bpo-41631: _ast module uses again a global state (#21961) by Victor Stinner · 5 years ago
  86. 640e8e1 Fix compiler warnings in init_dump_ascii_wstr() (GH-22150) by Victor Stinner · 5 years ago
  87. 58de1dd bpo-41525: Make the Python program help ASCII-only (GH-21836) by Serhiy Storchaka · 5 years ago
  88. f315142 bpo-1635741: Port mashal module to multi-phase init (#22149) by Victor Stinner · 5 years ago
  89. 0d6aa7f bpo-41681: Fix for `f-string/str.format` error description when using 2 `,` in format specifier (GH-22036) by han-solo · 5 years ago
  90. 75c80b0 closes bpo-41533: Fix a potential memory leak when allocating a stack (GH-21847) by Tony Solomonik · 5 years ago
  91. 97eaf2b bpo-41524: fix pointer bug in PyOS_mystr{n}icmp (GH-21845) by wmeehan · 5 years ago
  92. 8aa163e bpo-1635741: Explict GC collect after PyInterpreterState_Clear() (GH-21902) by Hai Shi · 5 years ago
  93. c51db0e bpo-41531: Fix compilation of dict literals with more than 0xFFFF elements (GH-21850) by Pablo Galindo · 5 years ago
  94. 8ecc0c4 bpo-1635741: Clean sysdict and builtins of interpreter at exit (GH-21605) by Hai Shi · 5 years ago
  95. 582aaf1 bpo-41463: Generate information about jumps from 'opcode.py' rather than duplicating it in 'compile.c' (GH-21714) by Mark Shannon · 5 years ago
  96. 6e8128f bpo-41323: Perform 'peephole' optimizations directly on the CFG. (GH-21517) by Mark Shannon · 5 years ago
  97. 5798f78 bpo-41340: Removed fallback implementation for strdup (GH-21634) by wasiher · 5 years ago
  98. cb9879b bpo-40941: Unify implicit and explicit state in the frame and generator objects into a single value. (GH-20803) by Mark Shannon · 5 years ago
  99. ea62a4b Fix -Wstrict-prototypes warning in thread_pthread.h. (GH-21477) by Benjamin Peterson · 5 years ago
  100. 4c8f09d bpo-36346: Make using the legacy Unicode C API optional (GH-21437) by Serhiy Storchaka · 5 years ago