summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* [3.12] gh-113358: Fix rendering tracebacks with exceptions with a broken __ge...Jérome Perrin2024-01-211-1/+32
* [3.12] gh-114384: Align sys.set_asyncgen_hooks signature in docs to reflect i...Miss Islington (bot)2024-01-211-1/+1
* [3.12] Check for valid tp_version_tag in specializer (gh-89811) (gh-114216)Peter Lazorchak2024-01-191-0/+22
* [3.12] gh-113842: Add missing error check for PyIter_Next() in Python/symtabl...Miss Islington (bot)2024-01-091-0/+6
* [3.12] gh-106905: Use separate structs to track recursion depth in each PyAST...Serhiy Storchaka2023-12-251-300/+379
* [3.12] gh-113297: Fix segfault in compiler for with statement with 19 context...Irit Katriel2023-12-231-0/+1
* [3.12] gh-113343: Fix error check on mmap(2) (GH-113342) (#113374)Miss Islington (bot)2023-12-211-1/+1
* [3.12] gh-112716: Fix SystemError when __builtins__ is not a dict (GH-112770)...Serhiy Storchaka2023-12-141-9/+5
* [3.12] gh-112943: Correctly compute end offsets for multiline tokens in the t...Pablo Galindo Salgado2023-12-111-1/+1
* [3.12] gh-106560: Fix redundant declarations in Python/frozen.c (#112612) (#1...Victor Stinner2023-12-031-6/+0
* [3.12] gh-112367: Only free perf trampoline arenas at shutdown (GH-112368) (#...Pablo Galindo Salgado2023-12-012-5/+35
* [3.12] gh-112356: LOAD_GLOBAL can only include one PUSH_NULL (#112566)Dennis Sweeney2023-12-011-2/+2
* [3.12] gh-110310: Add a Per-Interpreter XID Registry for Heap Types (gh-11031...Eric Snow2023-11-281-38/+120
* [3.12] gh-105716: Support Background Threads in Subinterpreters Consistently ...Eric Snow2023-11-281-0/+37
* [3.12] gh-109793: Allow Switching Interpreters During Finalization (gh-109794...Eric Snow2023-11-281-1/+16
* [3.12] gh-106931: Intern Statically Allocated Strings Globally (gh-107272) (g...Eric Snow2023-11-271-0/+7
* [3.12] gh-109853: Fix sys.path[0] For Subinterpreters (gh-109994) (gh-110701)Eric Snow2023-11-272-0/+30
* [3.12] gh-76785: Use Pending Calls When Releasing Cross-Interpreter Data (gh-...Eric Snow2023-11-271-33/+58
* [3.12] gh-112438: Fix support of format units with the "e" prefix in nested t...Miss Islington (bot)2023-11-271-1/+1
* gh-111856: Fix os.fstat on windows with FAT32 and exFAT filesystem (GH-112038)Miss Islington (bot)2023-11-131-3/+8
* [3.12] gh-111933: fix broken link to A.Neumaier article (gh-111937) (gh-111993)Miss Islington (bot)2023-11-121-1/+4
* [3.12] gh-109181: Fix refleak in tb_get_lineno() (#111948)Victor Stinner2023-11-101-1/+4
* [3.12] gh-111654: remove redundant decref in LOAD_FROM_DICT_OR_DEREF (GH-1116...Jelle Zijlstra2023-11-032-281/+277
* [3.12] gh-109181: Speed up Traceback object creation by lazily compute the li...Pablo Galindo Salgado2023-10-311-6/+29
* [3.12] bpo-43950: handle wide unicode characters in tracebacks (GH-28150) (#1...Pablo Galindo Salgado2023-10-261-2/+33
* [3.12] gh-109216: Fix possible memory leak in `BUILD_MAP` (#109324)Nikita Sobolev2023-10-152-255/+249
* [3.12] gh-110514: Add PY_THROW to `sys.setprofile` events (GH-110524) (#110541)Miss Islington (bot)2023-10-091-1/+7
* [3.12] gh-110237: Check `PyList_Append` for errors in `_PyEval_MatchClass` (G...Miss Islington (bot)2023-10-081-3/+11
* [3.12] GH-110455: Guard `assert(tstate->thread_id > 0)` with `GH-ifndef HAVE_...Miss Islington (bot)2023-10-061-2/+2
* [3.12] gh-108987: Fix _thread.start_new_thread() race condition (#109135) (#1...Victor Stinner2023-10-042-25/+32
* [3.12] gh-110052: Fix faulthandler for freed tstate (#110069) (#110071)Victor Stinner2023-10-021-10/+37
* [3.12] gh-109889: fix compiler's redundant NOP detection to look past NOPs wi...Miss Islington (bot)2023-10-021-1/+11
* [3.12] gh-109521: Fix obscure cases handling in PyImport_GetImporter() (GH-10...Miss Islington (bot)2023-10-021-5/+21
* [3.12] Fix error handling in _PySys_UpdateConfig() (GH-109524) (#109550)Miss Islington (bot)2023-10-021-2/+9
* [3.12] gh-109351: Fix crash when compiling AST with invalid NamedExpr (GH-109...Miss Islington (bot)2023-10-021-0/+5
* [3.12] gh-109179: Fix traceback display for SyntaxErrors with notes (#109197)...Irit Katriel2023-10-021-13/+11
* [3.12] gh-109207: Fix SystemError when printing symtable entry object. (GH-10...Miss Islington (bot)2023-10-021-3/+2
* [3.12] Check the result of PySet_Contains() for error in Python/symtable.c (G...Miss Islington (bot)2023-10-021-15/+57
* [3.12] gh-104690: thread_run() checks for tstate dangling pointer (#109056) (...Victor Stinner2023-10-022-18/+26
* [3.12] gh-109889: comment out assertion indicating a failed optimization of a...Irit Katriel2023-09-261-1/+7
* [3.12] gh-109823: Adjust labels in compiler when removing an empty basic bloc...Miss Islington (bot)2023-09-261-1/+8
* [3.12] gh-109719: Fix missing jump target labels when compiler reorders cold/...Miss Islington (bot)2023-09-241-0/+5
* [3.12] gh-109627: duplicated small exit blocks need to be assigned jump targe...Irit Katriel2023-09-221-5/+17
* [3.12] gh-109371: Fix monitoring with instruction events set (gh-109385) (#10...Miss Islington (bot)2023-09-181-1/+4
* [3.12] gh-109219: propagate free vars through type param scopes (GH-109377) (...Miss Islington (bot)2023-09-141-3/+2
* [3.12] gh-105658: fix excess trace events for except block ending with a cond...Irit Katriel2023-09-141-14/+2
* [3.12] gh-109341: Fix crash on compiling invalid AST including TypeAlias (GH-...Miss Islington (bot)2023-09-141-0/+5
* [3.12] gh-109118: Disallow nested scopes within PEP 695 scopes within classes...Miss Islington (bot)2023-09-121-0/+23
* [3.12] gh-109195: fix source location for super load before LOAD_SUPER_ATTR (...Miss Islington (bot)2023-09-121-1/+1
* [3.12] GH-108976. Keep monitoring data structures valid during de-optimizatio...Mark Shannon2023-09-121-55/+49