summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* [3.14] Revert "gh-112068: C API: Add support of nullable arguments in PyArg_P...Serhiy Storchaka2025-07-221-160/+87
* [3.14] gh-124621: Emscripten: Support pyrepl in browser (GH-136931) (GH-136988)Łukasz Langa2025-07-221-9/+107
* [3.14] gh-136251: Improvements to WASM demo REPL (GH-136252) (GH-136977)Miss Islington (bot)2025-07-221-1/+1
* [3.14] gh-124621: Emscripten: Add support for async input devices (GH-136822)...Miss Islington (bot)2025-07-221-0/+182
* [3.14] gh-134009: Expose `PyMutex_IsLocked` in the public C API (gh-134365) (...Hugo van Kemenade2025-07-221-0/+8
* [3.14] gh-133296: Publicly expose critical section API that accepts PyMutex (...Miss Islington (bot)2025-07-221-0/+18
* [3.14] gh-136421: Load `_datetime` static types during interpreter initializa...Miss Islington (bot)2025-07-211-0/+5
* [3.14] gh-136870: fix data race in `PyThreadState_Clear` on `sys_tracing_thre...Miss Islington (bot)2025-07-211-0/+9
* [3.14] gh-132661: Disallow `Template`/`str` concatenation after PEP 750 spec ...Lysandros Nikolaou2025-07-212-92/+4
* [3.14] gh-134411: assert `PyLong_FromLong(x) != NULL` when `x` is known to be...Miss Islington (bot)2025-07-211-0/+4
* [3.14] gh-127146: Emscripten: Make os.umask() actually work (GH-136706) (#136...Miss Islington (bot)2025-07-161-1/+21
* [3.14] gh-127146: Report uid in Emscripten + node as native uid (GH-136509) (...Miss Islington (bot)2025-07-161-0/+19
* [3.14] gh-136517: Print uncollectable objects if DEBUG_UNCOLLECTABLE mode was...Miss Islington (bot)2025-07-111-1/+1
* [3.14] gh-136541: Fix several problems of perf trampolines in x86_64 and aarc...Miss Islington (bot)2025-07-113-41/+144
* [3.14] gh-91048: Revert the memory cache removal for remote debugging (GH-136...Miss Islington (bot)2025-07-091-0/+78
* [3.14] GH-133136: Revise QSBR to reduce excess memory held (gh-135473) (#135912)Miss Islington (bot)2025-07-082-10/+6
* [3.14] gh-102567: Add missing newline to `--help-all` (GH-136391) (GH-136403)Miss Islington (bot)2025-07-081-1/+1
* [3.14] gh-109700: fix interpreter finalization while handling memory error (G...Miss Islington (bot)2025-07-071-7/+7
* [3.14] gh-134280: Disable constant folding for ~ with a boolean argument (GH-...Miss Islington (bot)2025-07-021-0/+4
* [3.14] gh-130396: Move PYOS_LOG2_STACK_MARGIN to internal headers (GH-135928)...Miss Islington (bot)2025-07-011-7/+7
* [3.14] gh-136053: Check error for TYPE_SLICE in marshal.c (GH-136054) (GH-136...Miss Islington (bot)2025-06-291-0/+3
* [3.14] gh-91048: Fix external inspection multi-threaded performance (GH-13600...Pablo Galindo Salgado2025-06-281-78/+0
* [3.14] gh-135871: Fix needless spinning in `_PyMutex_LockTimed` with zero tim...Miss Islington (bot)2025-06-251-1/+1
* [3.14] gh-135755: Move SPECIAL_ constants to a private header (GH-135922) (GH...Petr Viktorin2025-06-252-1/+2
* [3.14] gh-135855: Raise TypeError When Passing Non-dict Object to `_interpret...Miss Islington (bot)2025-06-241-0/+1
* [3.14] gh-135645: Added `supports_isolated_interpreters` to `sys.implementati...Miss Islington (bot)2025-06-211-0/+12
* [3.14] gh-135608: Add a null check for attribute promotion to fix a JIT crash...Ken Jin2025-06-203-2/+17
* gh-135543: Emit sys.remote_exec audit event when sys.remote_exec is called (G...Miss Islington (bot)2025-06-192-1/+6
* [3.14] gh-133485: Use interpreters.Interpreter in InterpreterPoolExecutor (gh...Miss Islington (bot)2025-06-191-1/+3
* [3.14] gh-132775: Fix Interpreter.call() __main__ Visibility (gh-135638)Miss Islington (bot)2025-06-172-227/+218
* [3.14] gh-132815: Add support for JUMP_BACKWARD in specialization stats (GH-1...Miss Islington (bot)2025-06-171-0/+1
* [3.14] gh-135443: Sometimes Fall Back to __main__.__dict__ For Globals (gh-13...Miss Islington (bot)2025-06-164-64/+257
* [3.14] gh-128627: Emscripten: Add missing semicolon in ios detection code (GH...Miss Islington (bot)2025-06-161-1/+1
* [3.14] gh-135513: Fix unused variable warning in `crossinterp.c` (GH-135514) ...Miss Islington (bot)2025-06-161-1/+7
* [3.14] gh-119132: Remove "experimental" tag from the CPython free-threading. ...Miss Islington (bot)2025-06-161-1/+1
* [3.14] GH-135171: Revert async generator expressions behavior (#135352)Mikhail Efimov2025-06-161-10/+21
* [3.14] gh-132775: Clean Up Cross-Interpreter Error Handling (gh-135492)Miss Islington (bot)2025-06-143-256/+451
* [3.14] gh-134939: Add the concurrent.interpreters Module (gh-135414)Eric Snow2025-06-121-3/+3
* [3.14] gh-128627: Fix iPad detection in wasm-gc (GH-135388) (#135419)Miss Islington (bot)2025-06-121-1/+10
* [3.14] gh-128605: Add branch protections for x86_64 in asm_trampoline.S (#128...stratakis2025-06-102-0/+26
* [3.14] Fix warnings `set but not used [-Wunused-but-set-variable]` in remote_...Miss Islington (bot)2025-06-101-9/+0
* [3.14] Fix definition of `_Py_RemoteDebug_` symbols for static linking (GH-13...Miss Islington (bot)2025-06-101-2/+12
* [3.14] Heavily comment Python/perf_jit_trampoline.c to improve maintainabilit...Miss Islington (bot)2025-06-091-385/+1029
* [3.14] gh-133968: Add PyUnicodeWriter_WriteASCII() function (#133973) (#134974)Victor Stinner2025-06-093-11/+11
* [3.14] GH-135171: Fix generator expressions one last time (hopefully) (GH-135...Mark Shannon2025-06-094-9/+62
* [3.14] gh-134876: Add fallback for when process_vm_readv fails with ENOSYS (G...Miss Islington (bot)2025-06-072-0/+109
* [3.14] gh-128605: Revert "Add branch protections for x86_64 in asm_tr…ampol...Petr Viktorin2025-06-062-27/+0
* [3.14] gh-134889: Fix handling of a few opcodes when optimizing `LOAD_FAST` (...mpage2025-06-051-0/+20
* [3.14] gh-135099: Only wait on `_PyOS_SigintEvent()` in main thread (GH-13510...Miss Islington (bot)2025-06-041-6/+16
* [3.14] gh-128605: Add branch protections for x86_64 in asm_trampoline.S (#128...stratakis2025-06-032-0/+27