summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
...
* gh-140067: Fix memory leak in sub-interpreter creation (#140111)Shamil2025-10-141-6/+9
* gh-111489: Remove _PyTuple_FromArray() alias (#139973)Victor Stinner2025-10-116-12/+9
* gh-139748: fix leaks in AC error paths when using unicode FS-based converters...Bénédikt Tran2025-10-082-5/+7
* gh-139353: Rename formatter_unicode.c to unicode_formatter.c (#139723)Victor Stinner2025-10-082-1731/+3
* GH-139291: Fix C stack limits by factoring out finding hardware stack limits ...Mark Shannon2025-10-071-28/+32
* gh-139525: Don't specialize functions which have a modified vectorcall (#139524)Dino Viehland2025-10-031-0/+9
* `Python/codecs.c`: Remove unused forward declaration (#139511)Stan Ulbrych2025-10-031-2/+0
* gh-132042: Remove resolve_slotdups() to speedup class creation (#132156)Sergey Miryanov2025-10-031-0/+4
* Fix typo in tracemalloc.c (#139450)Victor Stinner2025-10-011-1/+1
* gh-139116: tracemalloc: Detach thread state when acquiring tables_lock (GH-13...Petr Viktorin2025-09-301-1/+1
* gh-139275: Fix compilation of Modules/_remote_debugging_module.c when the sys...Pablo Galindo Salgado2025-09-241-1/+1
* gh-139231: Fix estimation of available stack size for recursion limit on macO...Rok Mandeljc2025-09-241-0/+7
* gh-133171: Re-enable JUMP_BACKWARD to free-threading build (gh-137800)Donghee Na2025-09-243-4/+10
* gh-67795: Accept any real numbers as timestamp and timeout (GH-139224)Serhiy Storchaka2025-09-231-46/+48
* gh-74857, PEP 538: Coerce POSIX locale to UTF-8 based locale (#139238)Victor Stinner2025-09-231-1/+4
* gh-112729: Correctly fail when the process is out of memory during interprete...Peter Bierma2025-09-191-8/+7
* gh-138310: Adds sys.audit event for import_module (#138311)Lisa Roach2025-09-191-27/+0
* gh-126016: Remove bad assertion in `PyThreadState_Clear` (GH-139158)Peter Bierma2025-09-191-1/+5
* gh-136003: Skip non-daemon threads when exceptions occur during finalization ...Peter Bierma2025-09-181-2/+23
* gh-139109: Dynamic opcode targets (GH-139111)Ken Jin2025-09-183-14/+15
* gh-135755: Make Py_TAIL_CALL_INTERP macro private (#138981)Victor Stinner2025-09-185-248/+248
* gh-136003: Execute pre-finalization callbacks in a loop (GH-136004)Peter Bierma2025-09-182-38/+137
* GH-138378: Move globals-to-consts pass into main optimizer pass (GH-138379)Mark Shannon2025-09-187-277/+243
* gh-137838: Move _PyUOpInstruction buffer to PyInterpreterState (gh-138918)Donghee Na2025-09-173-2/+28
* gh-138714: Don't assume next block has instructions when propagating line num...Dino Viehland2025-09-171-13/+19
* gh-128639: Don't assume one thread in subinterpreter finalization with fixed ...Peter Bierma2025-09-171-29/+33
* gh-128627: Use __builtin_wasm_test_function_pointer_signature for Emscripten ...Hood Chatham2025-09-173-191/+64
* gh-137433: Fix deadlock with stop-the-world and daemon threads (gh-137735)Sam Gross2025-09-163-28/+24
* gh-132732: Clear errors in JIT optimizer on error (GH-136048)Ken Jin2025-09-151-3/+10
* GH-132732: Use pure op machinery to optimize various instructions with `_POP_...Savannah Bailey2025-09-152-11/+149
* gh-138886: Remove deprecated `PySys_ResetWarnOptions` C-API function (#138887)sobolevn2025-09-151-1/+1
* gh-136355: Deprecate `-b` and `-bb` CLI flags in 3.15 (#136363)sobolevn2025-09-141-0/+1
* gh-138661: fix data race in `PyCode_Addr2Line` (#138664)Kumar Aditya2025-09-121-2/+2
* gh-138756: Fix leak of inittab memory in PyInitConfig_Free() (GH-138792)Victor Stinner2025-09-121-0/+1
* gh-138756: Fix memory leak in PyInitConfig_Free() (#138759)Victor Stinner2025-09-111-9/+51
* gh-138349: Fix crash when combining module-level annotation and listcomp (#13...Jelle Zijlstra2025-09-101-4/+6
* gh-138230: Remove dead code in code gen - codegen_check_annotation is only ca...Dino Viehland2025-09-101-21/+0
* gh-88886: Remove excessive encoding name normalization (GH-137167)Serhiy Storchaka2025-09-091-22/+25
* gh-133143: Use _Py_ID for the other literals in sys (GH-138698)Petr Viktorin2025-09-091-5/+5
* gh-137838: Fix JIT trace buffer overrun by increasing possible exit stubs (gh...Donghee Na2025-09-091-5/+8
* gh-138679: Opcodes which consume no inputs should indicate they produced the ...Dino Viehland2025-09-081-1/+1
* gh-133143: Condense the implementation for ``sys.abi_info`` (#138672)Adam Turner2025-09-081-23/+16
* gh-133143: Add sys.abi_info (GH-137476)Klaus Zimmermann2025-09-081-0/+70
* fix comment reference from man 7 signal to man 7 signal-safety (#138554)mqudah2025-09-061-1/+1
* gh-137210: Add a struct, slot & function for checking an extension's ABI (GH-...Petr Viktorin2025-09-051-0/+111
* gh-138192: Fix Context initialization so that all subinterpreters are assigne...Donghee Na2025-09-041-4/+1
* gh-138431: JIT Optimizer --- Fix round-tripping references for str and tuple ...Ken Jin2025-09-032-8/+11
* gh-137136: Suppress build warnings when build on Windows with --experimental-...AN Long2025-09-037-18/+18
* gh-138264: Fix gcc 14 compiler warnings (GH-138265)Serhiy Storchaka2025-09-032-19/+19
* gh-138372: Fix SyntaxWarning for erroneous t-string subscription (#138375)Brian Schubert2025-09-021-5/+7