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