Python 3.12.9
  1. 40d7f74 [3.12] gh-126108: Fix potential null pointer dereference in `PySys_AddWarnOptionUnicode` (GH-126118) (#129522) by Miss Islington (bot) · 7 months ago
  2. d2f551d [3.12] gh-128799: Add frame of except* to traceback when wrapping a naked exception (GH-128971) (#129328) by Irit Katriel · 7 months ago
  3. bb7c54d [3.12] gh-129185: Fix PyTraceMalloc_Untrack() at Python exit (#129191) (#129217) (#129221) by Victor Stinner · 7 months ago
  4. 6df22cb [3.12] gh-128679: Fix tracemalloc.stop() race conditions (#128897) (#129022) by Victor Stinner · 7 months ago
  5. f65ac86 [3.12] gh-128049: Fix type confusion bug with the return value of a custom ExceptionGroup split function (GH-128079) (#128140) by Miss Islington (bot) · 8 months ago
  6. e0b61ff [3.12] gh-126742: Add _PyErr_SetLocaleString, use it for gdbm & dlerror messages (GH-126746) (GH-128027) by Bénédikt Tran · 8 months ago
  7. 487a51a [3.12] gh-111609: `end_offset` is ignored in subclasses of SyntaxError (#127554) by Nice Zombies · 8 months ago
  8. 49da170 [3.12] gh-116510: Fix a Crash Due to Shared Immortal Interned Strings (gh-125205) by Miss Islington (bot) · 9 months ago
  9. e7ab978 [3.12] gh-127208: Reject null character in _imp.create_dynamic() (#127400) (#127419) by Victor Stinner · 9 months ago
  10. f4c9f39 [3.12] gh-123967: Fix faulthandler for trampoline frames (#127329) (#127363) by Victor Stinner · 9 months ago
  11. f1e7424 [3.12] gh-109746: Make _thread.start_new_thread delete state of new thread on its startup failure (GH-109761) (GH-127173) by Serhiy Storchaka · 9 months ago
  12. fc1e9e6 [3.12] gh-126171: fix possible null dereference in _imp_find_frozen_impl (GH-126566) (#126568) by Miss Islington (bot) · 9 months ago
  13. 2f39370 [3.12] Fix possible null pointer dereference of freevars in _PyCompile_LookupArg (gh-126238) (#126474) by Valery Fedorenko · 9 months ago
  14. 4afa129 [3.12] gh-125832: Clarify comment for inlined comprehensions as per P… (gh-126345) by Donghee Na · 10 months ago
  15. e5c7543 [3.12] gh-126139: Improve error message location for future statement with unknown feature (GH-126140) (#126160) by Brian Schubert · 10 months ago
  16. 515a5d3 [3.12] gh-126105: Fix crash in `ast` module, when `._fields` is delet… (#126132) by Kirill Podoprigora · 10 months ago
  17. 49f6beb [3.12] gh-113993: Make interned strings mortal (GH-120520, GH-121364, GH-121903, GH-122303) (#123065) by Petr Viktorin · 11 months ago
  18. 1854224 [3.12] gh-124188: Fix PyErr_ProgramTextObject() (GH-124189) (GH-124426) by Serhiy Storchaka · 11 months ago
  19. ffde4cd [3.12] gh-98442: fix locations of with statement's cleanup instructions (GH-120763) (#120787) by Miss Islington (bot) · 11 months ago
  20. 1248524 [3.12] gh-123892: Add "_wmi" to sys.stdlib_module_names (GH-123893) (#123897) by Miss Islington (bot) · 11 months ago
  21. 22ec9cb [3.12] gh-93691: fix too broad source locations of with-statement instructions (GH-120125) (#123605) by Miss Islington (bot) · 12 months ago
  22. 0181aa2 [3.12] gh-123142: fix too wide source location of GET_ITER/GET_AITER (GH-123420). (#123436) by Irit Katriel · 12 months ago
  23. 6e68559 [3.12] gh-123083: Fix a potential use-after-free in ``STORE_ATTR_WITH… (#123237) by Donghee Na · 12 months ago
  24. fbbde4d [3.12] gh-123142: Fix too wide source locations in tracebacks of exceptions from broken iterables in comprehensions (GH-123173). (#123210) by Irit Katriel · 12 months ago
  25. f2cc8ad [3.12] gh-118814: Fix the TypeVar constructor when name is passed by keyword (GH-122664) (GH-122807) by Serhiy Storchaka · 1 year ago
  26. 6b8a9a1 [3.12] gh-122334: Fix crash when importing ssl after re-initialization (GH-122481) (#122495) by neonene · 1 year, 1 month ago
  27. 257c413 [3.12] gh-122029: Log call events in sys.setprofile when it's a method with c function (GH-122072) (GH-122206) by Miss Islington (bot) · 1 year, 1 month ago
  28. 39dea21 [3.12] gh-121905: Consistently use "floating-point" instead of "floating point" (GH-121907) (GH-122013) by Serhiy Storchaka · 1 year, 1 month ago
  29. 874eed6 [3.12] gh-121153: Fix some errors with use of _PyLong_CompactValue() (GH-121154) by Serhiy Storchaka · 1 year, 1 month ago
  30. b455a5a [3.12] gh-121657: Display correct error message for yield from outsid… (GH-121769) by Kirill Podoprigora · 1 year, 1 month ago
  31. 9e542f9 [3.12] gh-121390: tracemalloc: Fix tracebacks memory leak (GH-121391) (#121393) by Miss Islington (bot) · 1 year, 1 month ago
  32. b1bccab [3.12] gh-120811: Fix reference leak upon `_PyContext_Exit` failure (GH-120812) (#120844) by Miss Islington (bot) · 1 year, 2 months ago
  33. d62cbba [3.12] gh-120722: Set position on RETURN_VALUE in lambda (GH-120724) (#120739) by Jelle Zijlstra · 1 year, 2 months ago
  34. 5d997b5 [3.12] gh-119897: Revert buggy optimization which was removed in 3.13 (#120467) by Irit Katriel · 1 year, 2 months ago
  35. 5a6cc3c [3.12] gh-93691: fix too broad source locations of for statement iterators (GH-120330 (#120405) by Irit Katriel · 1 year, 2 months ago
  36. f75abf8 [3.12] gh-120343: Fix column offsets of multiline tokens in tokenize (GH-120391) (#120428) by Miss Islington (bot) · 1 year, 2 months ago
  37. 0315fdc [3.12] gh-120343: Do not reset byte_col_offset_diff after multiline tokens (GH-120352) (#120356) by Miss Islington (bot) · 1 year, 2 months ago
  38. 82c93ea [3.12] gh-119666: fix multiple class-scope comprehensions referencing __class__ (GH-120295) (#120300) by Miss Islington (bot) · 1 year, 2 months ago
  39. b3b5278 [3.12] gh-120155: Fix optimize_and_assemble_code_unit() error handling (#120231) by Victor Stinner · 1 year, 2 months ago
  40. dc40226 [3.12] gh-119311: Fix name mangling with PEP 695 generic classes (#119464) (#119644) by Jelle Zijlstra · 1 year, 2 months ago
  41. e3e7607 [3.12] gh-111499: Fix PYTHONMALLOCSTATS at Python exit (#120021) (#120023) by Victor Stinner · 1 year, 2 months ago
  42. 3bf7a50 [3.12] gh-119821: Fix refleak in LOAD_FROM_DICT_OR_GLOBALS (#119975) by Jelle Zijlstra · 1 year, 3 months ago
  43. 6d9677d [3.12] gh-119821: Support non-dict globals in LOAD_FROM_DICT_OR_GLOBALS (#119822) (#119890) by Jelle Zijlstra · 1 year, 3 months ago
  44. 738cf21 [3.12] gh-119585: Fix crash involving `PyGILState_Release()` and `PyThreadState_Clear()` (GH-119753) (#119861) by Sam Gross · 1 year, 3 months ago
  45. a62681c [3.12] gh-119704: Fix reference leak in the ``Python/Python-tokenize.c`` (GH-119705) (#119708) by Miss Islington (bot) · 1 year, 3 months ago
  46. 4a0af0c [3.12] gh-119118: Fix performance regression in tokenize module (GH-119615) (#119683) by Miss Islington (bot) · 1 year, 3 months ago
  47. 0d5fe2c [3.12] gh-119213: Be More Careful About _PyArg_Parser.kwtuple Across Interpreters (gh-119331) (gh-119425) by Eric Snow · 1 year, 3 months ago
  48. 3706eef [3.12] gh-118513: Fix sibling comprehensions with a name bound in one and global in the other (GH-118526) (#118548) by Miss Islington (bot) · 1 year, 4 months ago
  49. 238efbe [3.12] gh-118272: Clear generator frame's locals when the generator is closed (#118451) by Irit Katriel · 1 year, 4 months ago
  50. ebef3c5 [3.12] gh-116767: fix crash on 'async with' with many context managers (GH-118348) (#118477) by Irit Katriel · 1 year, 4 months ago
  51. e7c7749 [3.12] gh-91565: Replace bugs.python.org links with Devguide/GitHub ones (GH-91568) (GH-117890) by Miss Islington (bot) · 1 year, 4 months ago
  52. 0325a8a [3.12] gh-90300: Remove reference to PYTHON_FROZEN_MODULES in Python CLI help (GH-117035) by Serhiy Storchaka · 1 year, 5 months ago
  53. 4be9fa8 [3.12] gh-90300: Improve the Python CLI help output (GH-115853) (GH-117022) by Serhiy Storchaka · 1 year, 5 months ago
  54. 688623d [3.12] gh-116735: Use `MISSING` for `CALL` event if argument is absen… (#116873) by Tian Gao · 1 year, 5 months ago
  55. 25243b1 [3.12] gh-112536: Add TSAN build on Github Actions (GH-116872) by Antoine Pitrou · 1 year, 5 months ago
  56. 56a3c5f [3.12] gh-116626: Emit `CALL` events for all `INSTRUMENTED_CALL_FUNCTION_EX (GH-116732) by Tian Gao · 1 year, 5 months ago
  57. fc4d5fd [3.12] gh-90300: Fix undocumented envvars in the Python CLI help (GH-116765) (GH-116797) by Serhiy Storchaka · 1 year, 5 months ago
  58. 991710a [3.12] gh-90300: Document equivalent -X options for envvars in the Python CLI help (GH-116756) (GH-116786) by Serhiy Storchaka · 1 year, 5 months ago
  59. 870cd90 [3.12] gh-90300: Sort the -X options and some envvars in the Python CLI help (GH-116739) (GH-116766) by Serhiy Storchaka · 1 year, 5 months ago
  60. 89b5c5e [3.12] gh-90300: Fix cmdline.rst (GH-116721) (GH-116724) by Miss Islington (bot) · 1 year, 5 months ago
  61. 2647afe [3.12] gh-116447: Fix possible UB in `arraymodule` and `getargs` (GH-116459) (#116496) by Miss Islington (bot) · 1 year, 5 months ago
  62. 9a42cfa [3.12] gh-116326: Handler errors correctly in `getwindowsversion` in `sysmodule` (GH-116339) (#116354) by Miss Islington (bot) · 1 year, 6 months ago
  63. 0f70c14 [3.12] gh-115320: Refactor `get_hash_info` in `sysmodule.c` not to swallow errors (GH-115321) (#116323) by Miss Islington (bot) · 1 year, 6 months ago
  64. 6359141 [3.12] gh-116034: fix location info on the error of a failed assertion (#116054) by Irit Katriel · 1 year, 6 months ago
  65. 2bdd1d6 [3.12] gh-90300: Reformat the Python CLI help output (GH-93415) (#115847) by Łukasz Langa · 1 year, 6 months ago
  66. bf0e072 [3.12] gh-96497: Mangle name before symtable lookup in 'symtable_extend_namedexpr_scope' (GH-96561) (GH-115603) by Miss Islington (bot) · 1 year, 6 months ago
  67. 4d87832 [3.12] GH-112215: Backport C recursion changes (GH-115083) by Mark Shannon · 1 year, 6 months ago
  68. d8346d6 [3.12] gh-115011: Improve support of __index__() in setters of members with unsigned integer type (GH-115029) (GH-115294) by Serhiy Storchaka · 1 year, 6 months ago
  69. 967f27d [3.12] gh-114828: Fix __class__ in class-scope inlined comprehensions (GH-115139) (#115140) by Miss Islington (bot) · 1 year, 6 months ago
  70. b9937a6 [3.12] gh-114388: Fix warnings when assign an unsigned integer member (GH-114391) (GH-115001) by Serhiy Storchaka · 1 year, 7 months ago
  71. 2a1d2c8 [3.12] gh-114685: Fix incorrect use of PyBUF_READ in import.c (GH-114686) (GH-114700) by Miss Islington (bot) · 1 year, 7 months ago
  72. 00e8c9c [3.12] gh-113358: Fix rendering tracebacks with exceptions with a broken __getattr__ (GH-113359) (#114173) by Jérome Perrin · 1 year, 7 months ago
  73. afefa4a [3.12] gh-114384: Align sys.set_asyncgen_hooks signature in docs to reflect implementation (GH-114385) (#114386) by Miss Islington (bot) · 1 year, 7 months ago
  74. ae2a25b [3.12] Check for valid tp_version_tag in specializer (gh-89811) (gh-114216) by Peter Lazorchak · 1 year, 7 months ago
  75. 6b6f91e [3.12] gh-113842: Add missing error check for PyIter_Next() in Python/symtable.c (GH-113843) (GH-113851) by Miss Islington (bot) · 1 year, 7 months ago
  76. d58a5f4 [3.12] gh-106905: Use separate structs to track recursion depth in each PyAST_mod2obj call. (GH-113035) (GH-113472) by Serhiy Storchaka · 1 year, 8 months ago
  77. 9d72a5c [3.12] gh-113297: Fix segfault in compiler for with statement with 19 context managers (#113327) (#113404) by Irit Katriel · 1 year, 8 months ago
  78. c38ebb4 [3.12] gh-113343: Fix error check on mmap(2) (GH-113342) (#113374) by Miss Islington (bot) · 1 year, 8 months ago
  79. 59a22d3 [3.12] gh-112716: Fix SystemError when __builtins__ is not a dict (GH-112770) (GH-113103) by Serhiy Storchaka · 1 year, 8 months ago
  80. e4d2fb2 [3.12] gh-112943: Correctly compute end offsets for multiline tokens in the tokenize module (GH-112949) (#112957) by Pablo Galindo Salgado · 1 year, 8 months ago
  81. 34d57d5 [3.12] gh-106560: Fix redundant declarations in Python/frozen.c (#112612) (#112651) by Victor Stinner · 1 year, 9 months ago
  82. 11232c1 [3.12] gh-112367: Only free perf trampoline arenas at shutdown (GH-112368) (#112590) by Pablo Galindo Salgado · 1 year, 9 months ago
  83. a99305e [3.12] gh-112356: LOAD_GLOBAL can only include one PUSH_NULL (#112566) by Dennis Sweeney · 1 year, 9 months ago
  84. 1e1a30f [3.12] gh-110310: Add a Per-Interpreter XID Registry for Heap Types (gh-110311) (gh-110714) by Eric Snow · 1 year, 9 months ago
  85. 0122b4d [3.12] gh-105716: Support Background Threads in Subinterpreters Consistently (gh-109921) (gh-110707) by Eric Snow · 1 year, 9 months ago
  86. 82ae5a6 [3.12] gh-109793: Allow Switching Interpreters During Finalization (gh-109794) (gh-110705) by Eric Snow · 1 year, 9 months ago
  87. 4f71f16 [3.12] gh-106931: Intern Statically Allocated Strings Globally (gh-107272) (gh-110713) by Eric Snow · 1 year, 9 months ago
  88. 3135544 [3.12] gh-109853: Fix sys.path[0] For Subinterpreters (gh-109994) (gh-110701) by Eric Snow · 1 year, 9 months ago
  89. 592a849 [3.12] gh-76785: Use Pending Calls When Releasing Cross-Interpreter Data (gh-109556) (gh-112288) by Eric Snow · 1 year, 9 months ago
  90. 46047bb [3.12] gh-112438: Fix support of format units with the "e" prefix in nested tuples in PyArg_Parse (gh-112439) (GH-112460) by Miss Islington (bot) · 1 year, 9 months ago
  91. dfdbfc5 gh-111856: Fix os.fstat on windows with FAT32 and exFAT filesystem (GH-112038) by Miss Islington (bot) · 1 year, 9 months ago
  92. 158a7e1 [3.12] gh-111933: fix broken link to A.Neumaier article (gh-111937) (gh-111993) by Miss Islington (bot) · 1 year, 9 months ago
  93. 4b0c875 [3.12] gh-109181: Fix refleak in tb_get_lineno() (#111948) by Victor Stinner · 1 year, 9 months ago
  94. 1a95ad6 [3.12] gh-111654: remove redundant decref in LOAD_FROM_DICT_OR_DEREF (GH-111655) (#111674) by Jelle Zijlstra · 1 year, 10 months ago
  95. 4f619e8 [3.12] gh-109181: Speed up Traceback object creation by lazily compute the line number (GH-111548) (#111551) by Pablo Galindo Salgado · 1 year, 10 months ago
  96. c81ebf5 [3.12] bpo-43950: handle wide unicode characters in tracebacks (GH-28150) (#111346) by Pablo Galindo Salgado · 1 year, 10 months ago
  97. b6755d8 [3.12] gh-109216: Fix possible memory leak in `BUILD_MAP` (#109324) by Nikita Sobolev · 1 year, 10 months ago
  98. dae3db1 [3.12] gh-110514: Add PY_THROW to `sys.setprofile` events (GH-110524) (#110541) by Miss Islington (bot) · 1 year, 10 months ago
  99. ef4bd1b [3.12] gh-110237: Check `PyList_Append` for errors in `_PyEval_MatchClass` (GH-110238) (#110511) by Miss Islington (bot) · 1 year, 10 months ago
  100. 2465fe0 [3.12] GH-110455: Guard `assert(tstate->thread_id > 0)` with `GH-ifndef HAVE_PTHREAD_STUBS` (GH-110487) (GH-110491) by Miss Islington (bot) · 1 year, 11 months ago