1. 11a82c7 bpo-41525: Make the Python program help ASCII-only (GH-21836) by Miss Islington (bot) · 5 years ago
  2. d64d78b bpo-41531: Fix compilation of dict literals with more than 0xFFFF elements (GH-21850) (GH-22107) by Miss Islington (bot) · 5 years ago
  3. 106c1df7 closes bpo-41533: Fix a potential memory leak when allocating a stack (GH-21847) by Miss Islington (bot) · 5 years ago
  4. c16a2a1 bpo-41681: Fix for `f-string/str.format` error description when using 2 `,` in format specifier (GH-22036) (GH-22041) by Miss Islington (bot) · 5 years ago
  5. 901c2ea bpo-41524: fix pointer bug in PyOS_mystr{n}icmp (GH-21845) (GH-21978) by Miss Islington (bot) · 5 years ago
  6. d2bea26 [3.9] bpo-41194: Convert _ast extension to PEP 489 (GH-21807) by Victor Stinner · 5 years ago
  7. f2f6759 Fix -Wstrict-prototypes warning in thread_pthread.h. (GH-21477) by Miss Islington (bot) · 5 years ago
  8. 6488a4a [3.9] bpo-41218: Only mark async code with CO_COROUTINE. (GH-21357) (GH-21362) by Pablo Galindo · 5 years ago
  9. 4981fe3 bpo-29778: Ensure python3.dll is loaded from correct locations when Python is embedded (GH-21297) by Miss Islington (bot) · 5 years ago
  10. 941117a bpo-21222: Fix improperly merged change so that final hooks are called before types are cleared (GH-21304) by Steve Dower · 5 years ago
  11. e1d4fdc bpo-41162: Clear audit hooks later during finalization (GH-21222) by Steve Dower · 5 years ago
  12. 1c77654 bpo-41180: Audit code.__new__ when unmarshalling (GH-21271) by Miss Islington (bot) · 5 years ago
  13. f859927 [3.9] bpo-41194: The _ast module cannot be loaded more than once (GH-21290) (GH-21292) by Victor Stinner · 5 years ago
  14. 2a1ee1d [3.9] bpo-35975: Only use cf_feature_version if PyCF_ONLY_AST in cf_flags (#21022) by Guido van Rossum · 5 years ago
  15. dab533d [3.9] bpo-41076: Pre-feed the parser with the f-string expression location (GH-21054) (GH-21190) by Pablo Galindo · 5 years ago
  16. 5193d0a [3.9] bpo-41132: Use pymalloc allocator in the f-string parser (GH-21173) (GH-21183) by Lysandros Nikolaou · 5 years ago
  17. 7329c8c bpo-41094: Fix decoding errors with audit when open files. (GH-21095) by Miss Islington (bot) · 5 years ago
  18. f19ed6b bpo-41061: Fix incorrect expressions in hashtable (GH-21028) by Miss Islington (bot) · 5 years ago
  19. 9fe5dec bpo-41056: Fix reference to deallocated stack in pathconfig (Coverity) (GH-21013) by Miss Islington (bot) · 5 years ago
  20. 610a60c bpo-36346: Add Py_DEPRECATED to deprecated unicode APIs (GH-20878) by Inada Naoki · 5 years ago
  21. 097b8b6 bpo-40985: Show correct SyntaxError text when last line has a LINECONT (GH-20888) by Miss Islington (bot) · 5 years ago
  22. b498c7f bpo-36020: Remove snprintf macro in pyerrors.h (GH-20889) by Miss Islington (bot) · 5 years ago
  23. bab0833 bpo-40910: PyConfig_Clear() clears _orig_argv (GH-20886) by Miss Islington (bot) · 5 years ago
  24. c932f5c bpo-40957: Fix refleak in _Py_fopen_obj() (GH-20827) by Miss Islington (bot) · 5 years ago
  25. 94bb4b7 bpo-40834: Fix truncate when sending str object with channel (GH-20555) by Miss Islington (bot) · 5 years ago
  26. ce5e6f0 [3.9] bpo-40924: Revert "bpo-39791 native hooks for importlib.resources.files (GH-20576)" (#20760) by Łukasz Langa · 5 years ago
  27. 8175064 bpo-40854: Allow overriding sys.platlibdir via PYTHONPLATLIBDIR env-var (GH-20605) (GH-20725) by Victor Stinner · 5 years ago
  28. dedaac0 bpo-40910: Export Py_GetArgcArgv() function (GH-20721) (GH-20723) by Victor Stinner · 5 years ago
  29. 9cf1be4 bpo-39791 native hooks for importlib.resources.files (GH-20576) by Miss Islington (bot) · 5 years ago
  30. 90ee51f bpo-40870: Invalidate usage of some constants with ast.Name (GH-20649) by Miss Islington (bot) · 5 years ago
  31. 6d62dc1 [3.9] bpo-40826: PyOS_InterruptOccurred() requires GIL (GH-20578) (GH-20618) by Victor Stinner · 5 years ago
  32. 20fe532 [3.9] Fix MSVC warnings in pythonrun.c (GH-20587) (GH-20592) by Ammar Askar · 5 years ago
  33. 410b730 Make sure that keyword arguments are merged into the arguments dictionary when dict unpacking and keyword arguments are interleaved. (GH-20553) (GH-20569) by Miss Islington (bot) · 5 years ago
  34. ad088ca bpo-40780: Fix failure of _Py_dg_dtoa to remove trailing zeros (GH-20435) (GH-20514) by Miss Islington (bot) · 5 years ago
  35. bcbe5c5 bpo-40217: Ensure Py_VISIT(Py_TYPE(self)) is always called for PyType_FromSpec types (reverts GH-19414) (GH-20264) by Miss Islington (bot) · 5 years ago
  36. 9b83829 [3.9] bpo-40614: Respect feature version for f-string debug expressions (GH-20196) (GH-20464) by Pablo Galindo · 5 years ago
  37. 1a4e9e6 bpo-36290: Fix keytword collision handling in AST node constructors (GH-12382) by Miss Islington (bot) · 5 years ago
  38. 7f77ac4 bpo-40696: Fix a hang that can arise after gen.throw() (GH-20287) by Miss Islington (bot) · 5 years ago
  39. 9512ad7 [3.9] bpo-40514: Remove --with-experimental-isolated-subinterpreters in 3.9 (GH-20228) by Victor Stinner · 5 years ago
  40. 2135e10 bpo-40663: Correctly handle annotations with subscripts in ast_unparse.c (GH-20156) by Batuhan Taskaya · 5 years ago
  41. 98e42d1 bpo-35890: Use RegQueryInfoKeyW and CryptAcquireContextW explicitly (GH-19974) by Minmin Gong · 5 years ago
  42. f660567 bpo-40650: Include winsock2.h in pytime.c, instead of a full windows.h (GH-20137) by Minmin Gong · 5 years ago
  43. da742ba bpo-31033: Improve the traceback for cancelled asyncio tasks (GH-19951) by Chris Jerdonek · 5 years ago
  44. 6a5d3ff bpo-40636: Clarify the zip built-in docstring. (GH-20118) by Gregory P. Smith · 5 years ago
  45. 4a12d12 Fix typo in code comment in main_loop label. (GH-20068) by Chris Jerdonek · 5 years ago
  46. 15bc9ab bpo-40612: Fix SyntaxError edge cases in traceback formatting (GH-20072) by Guido van Rossum · 5 years ago
  47. 16ab070 bpo-40334: Correctly identify invalid target in assignment errors (GH-20076) by Pablo Galindo · 5 years ago
  48. d2dc827 bpo-40602: _Py_hashtable_set() reports rehash failure (GH-20077) by Victor Stinner · 5 years ago
  49. a482dc5 bpo-40602: Write unit tests for _Py_hashtable_t (GH-20091) by Victor Stinner · 5 years ago
  50. 42bae3a bpo-40602: Optimize _Py_hashtable_get_ptr() (GH-20066) by Victor Stinner · 5 years ago
  51. 5b0a303 bpo-40609: _Py_hashtable_t values become void* (GH-20065) by Victor Stinner · 5 years ago
  52. d95bd42 bpo-40609: _tracemalloc allocates traces (GH-20064) by Victor Stinner · 5 years ago
  53. 2d0a3d6 bpo-40609: Add destroy functions to _Py_hashtable (GH-20062) by Victor Stinner · 5 years ago
  54. f9b3b58 bpo-40609: Remove _Py_hashtable_t.key_size (GH-20060) by Victor Stinner · 5 years ago
  55. f453221 bpo-40602: Add _Py_HashPointerRaw() function (GH-20056) by Victor Stinner · 5 years ago
  56. 4c9ea09 bpo-38787: Add PyCFunction_CheckExact() macro for exact type checks (GH-20024) by scoder · 5 years ago
  57. 7c6e970 bpo-40602: Optimize _Py_hashtable for pointer keys (GH-20051) by Victor Stinner · 5 years ago
  58. 74ea6b5 bpo-40593: Improve syntax errors for invalid characters in source code. (GH-20033) by Serhiy Storchaka · 5 years ago
  59. d0919f0 bpo-40602: _Py_hashtable_new() uses PyMem_Malloc() (GH-20046) by Victor Stinner · 5 years ago
  60. b617993 bpo-40602: Rename hashtable.h to pycore_hashtable.h (GH-20044) by Victor Stinner · 5 years ago
  61. 4804b5b bpo-39465: Don't access directly _Py_Identifier members (GH-20043) by Victor Stinner · 5 years ago
  62. 091951a bpo-40528: Improve and clear several aspects of the ASDL definition code for the AST (GH-19952) by Batuhan Taskaya · 5 years ago
  63. 2668a9a bpo-40527: Fix command line argument parsing (GH-19955) by Victor Stinner · 5 years ago
  64. 7be4e35 bpo-40513: Per-interpreter GIL (GH-19943) by Victor Stinner · 5 years ago
  65. 0dd5e7a bpo-40513: new_interpreter() init GIL earlier (GH-19942) by Victor Stinner · 5 years ago
  66. e838a93 bpo-40522: _PyThreadState_Swap() sets autoTSSkey (GH-19939) by Victor Stinner · 5 years ago
  67. 299b8c6 Revert "bpo-40513: Per-interpreter signals pending (GH-19924)" (GH-19932) by Victor Stinner · 5 years ago
  68. b0be6b3 bpo-29587: _PyErr_ChainExceptions() checks exception (GH-19902) by Victor Stinner · 5 years ago
  69. 4e30ed3 bpo-40513: Per-interpreter recursion_limit (GH-19929) by Victor Stinner · 5 years ago
  70. c5fa364 bpo-40514: Add --with-experimental-isolated-subinterpreters (GH-19926) by Victor Stinner · 5 years ago
  71. 0b1e330 bpo-40513: Per-interpreter gil_drop_request (GH-19927) by Victor Stinner · 5 years ago
  72. 4e01946 bpo-40513: Per-interpreter signals pending (GH-19924) by Victor Stinner · 5 years ago
  73. 846d8b2 bpo-40246: Revert reporting of invalid string prefixes (GH-19888) by Lysandros Nikolaou · 5 years ago
  74. f40bd46 bpo-40417: Fix deprecation warning in PyImport_ReloadModule (GH-19750) by Robert Rouhani · 5 years ago
  75. 64224a4 bpo-40412: Nullify inittab_copy during finalization (GH-19746) by Gregory Szorc · 5 years ago
  76. 252346a bpo-40453: Add PyConfig._isolated_subinterpreter (GH-19820) by Victor Stinner · 5 years ago
  77. c001c09 bpo-40334: Support type comments (GH-19780) by Guido van Rossum · 5 years ago
  78. 7036477 bpo-40421: Add PyFrame_GetBack() function (GH-19765) by Victor Stinner · 5 years ago
  79. 4386b90 bpo-40429: PyThreadState_GetFrame() returns a strong ref (GH-19781) by Victor Stinner · 5 years ago
  80. ae00a5a bpo-40428: Remove PyTuple_ClearFreeList() function (GH-19769) by Victor Stinner · 5 years ago
  81. 8852ad4 bpo-40429: PyFrame_GetCode() now returns a strong reference (GH-19773) by Victor Stinner · 5 years ago
  82. 6d86a23 bpo-40429: PyFrame_GetCode() result cannot be NULL (GH-19772) by Victor Stinner · 5 years ago
  83. a42ca74 bpo-40421: Add PyFrame_GetCode() function (GH-19757) by Victor Stinner · 5 years ago
  84. 2b74c83 bpo-40334: Support CO_FUTURE_BARRY_AS_BDFL in the new parser (GH-19721) by Pablo Galindo · 5 years ago
  85. 2510494 bpo-40048: Fix _PyCode_InitOpcache() error path (GH-19691) by Victor Stinner · 5 years ago
  86. bc28805 bpo-40334: Use old compiler when compile mode is func_type (GH-19692) by Guido van Rossum · 5 years ago
  87. ebebb64 bpo-40334: Improve various PEG-Parser related stuff (GH-19669) by Lysandros Nikolaou · 5 years ago
  88. ee40e4b bpo-40334: Don't downcast from Py_ssize_t to int (GH-19671) by Pablo Galindo · 5 years ago
  89. 1def775 bpo-40334: Rename PyConfig.use_peg to _use_peg_parser (GH-19670) by Victor Stinner · 5 years ago
  90. c5fc156 bpo-40334: PEP 617 implementation: New PEG parser for CPython (GH-19503) by Pablo Galindo · 5 years ago
  91. 4454057 bpo-39562: Prevent collision of future and compiler flags (GH-19230) by Batuhan Taşkaya · 5 years ago
  92. 6a9e80a bpo-40313: speed up bytes.hex() (GH-19594) by sweeneyde · 5 years ago
  93. ce57883 Add spaces around the ":=" operator in ast_unparse.c (GH-19568) by Hakan Çelik · 5 years ago
  94. 1a1bd2e bpo-40302: Replace PY_INT64_T with int64_t (GH-19573) by Victor Stinner · 5 years ago
  95. 455df97 Optimize _Py_strhex_impl() (GH-19535) by Victor Stinner · 5 years ago
  96. 4f98f46 bpo-40268: Remove unused imports in pylifecycle.c (GH-19533) by Victor Stinner · 5 years ago
  97. 361dcdc bpo-40268: Remove unused osdefs.h includes (GH-19532) by Victor Stinner · 5 years ago
  98. d9ea5ca bpo-40268: Remove unused pycore_pymem.h includes (GH-19531) by Victor Stinner · 5 years ago
  99. 4a21e57 bpo-40268: Remove unused structmember.h includes (GH-19530) by Victor Stinner · 5 years ago
  100. 62183b8 bpo-40268: Remove explicit pythread.h includes (#19529) by Victor Stinner · 5 years ago