summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
...
* gh-136421: Load `_datetime` static types during interpreter initialization (G...Peter Bierma2025-07-211-0/+5
* gh-136251: Improvements to WASM demo REPL (GH-136252)adam j hartz2025-07-211-1/+1
* gh-134411: assert `PyLong_FromLong(x) != NULL` when `x` is known to be small ...Sergey Muraviov2025-07-211-0/+4
* gh-132661: Disallow `Template`/`str` concatenation after PEP 750 spec update ...Dave Peck2025-07-212-92/+4
* gh-124621: Emscripten: Fix regression in use-after-close error handling (#136...Hood Chatham2025-07-191-1/+8
* gh-124621: Emscripten: Add support for async input devices (GH-136822)Hood Chatham2025-07-191-0/+175
* gh-127146: Emscripten: Make os.umask() actually work (#136706)Hood Chatham2025-07-161-1/+21
* gh-127146: Report uid in Emscripten + node as native uid (#136509)Hood Chatham2025-07-161-0/+19
* gh-135909: Assert incoming `refcnt != 0` for the free threaded GC (GH-136009)andrewreds2025-07-151-7/+15
* GH-133711: Enable UTF-8 mode by default (PEP 686) (#133712)Adam Turner2025-07-152-25/+9
* Fix a minor indentation error (#136661)Tian Gao2025-07-151-1/+1
* GH-135904: Improve the JIT's performance on macOS (GH-136528)Brandt Bucher2025-07-141-4/+7
* gh-121914: Change the names of the symbol tables for lambda and genexpr (GH-1...Serhiy Storchaka2025-07-131-5/+5
* gh-132629: Deprecate accepting out-of-range values for unsigned integers in P...Serhiy Storchaka2025-07-131-20/+63
* Doc: More duplicate word fixes (GH-136299)Weilin Du2025-07-111-1/+1
* gh-136541: Fix several problems of perf trampolines in x86_64 and aarch64 (#1...Pablo Galindo Salgado2025-07-113-41/+144
* gh-136517: Print uncollectable objects if DEBUG_UNCOLLECTABLE mode was set (#...Sergey Miryanov2025-07-101-1/+1
* gh-135953: Implement sampling tool under profile.sample (#135998)László Kiss Kollár2025-07-101-1/+21
* gh-91048: Revert the memory cache removal for remote debugging (#136440)Pablo Galindo Salgado2025-07-091-0/+78
* GH-91636: Clear weakrefs created by finalizers. (GH-136401)Neil Schemenauer2025-07-082-7/+38
* gh-134043: use `_PyObject_GetMethodStackRef` in pattern matching (#136356)Kumar Aditya2025-07-081-4/+6
* gh-102567: Add missing newline to `--help-all` (GH-136391)Hugo van Kemenade2025-07-081-1/+1
* gh-109700: fix interpreter finalization while handling memory error (#136342)Kumar Aditya2025-07-071-7/+7
* gh-115999: remove redundant check in free-threading from `_STORE_ATTR_WITH_HI...Kumar Aditya2025-07-043-25/+0
* `Python/gc.c`: Refer to `InternalDocs` instead of devguide. (#136243)Kirill Podoprigora2025-07-031-1/+1
* gh-136183: Deal with escapes in JIT optimizer's constant evaluator (GH-136184)Ken Jin2025-07-021-3/+3
* gh-134009: Expose `PyMutex_IsLocked` in the public C API (gh-134365)Sam Gross2025-07-011-0/+8
* gh-134280: Disable constant folding for ~ with a boolean argument (GH-134982)Serhiy Storchaka2025-07-011-0/+4
* gh-136125: Use `_PyObject_GetMethodStackRef` for `LOAD_ATTR` (GH-136127)Ken Jin2025-07-015-31/+28
* gh-105456: Remove 3 deprecated `sre_*` modules (#135994)Stan Ulbrych2025-07-011-3/+0
* gh-130396: Move PYOS_LOG2_STACK_MARGIN to internal headers (#135928)Victor Stinner2025-07-011-7/+7
* gh-87135: threading.Lock: Raise rather than hang on Python finalization (GH-1...Petr Viktorin2025-07-011-0/+12
* gh-136053: Check error for TYPE_SLICE in marshal.c (GH-136054)Akshat Gupta2025-06-291-0/+3
* gh-91048: Fix external inspection multi-threaded performance (#136005)Pablo Galindo Salgado2025-06-281-78/+0
* gh-132732: Fix up pure types in JIT (GH-136050)Ken Jin2025-06-281-1/+1
* gh-132732: JIT: Only allow compact ints in pure evaluation (GH-136040)Ken Jin2025-06-271-2/+4
* gh-132732: Automatically constant evaluate pure operations (GH-132733)Ken Jin2025-06-275-119/+310
* Fix needless spinning in `_PyMutex_LockTimed` with zero timeout (gh-135872)Joseph Tibbertsma2025-06-251-1/+1
* gh-135755: Move SPECIAL_ constants to a private header (GH-135922)Petr Viktorin2025-06-252-1/+2
* GH-133136: Revise QSBR to reduce excess memory held (gh-135473)Neil Schemenauer2025-06-252-10/+6
* gh-135855: Raise TypeError When Passing Non-dict Object to `_interpreters.set...Brian Schubert2025-06-241-0/+1
* gh-119786: Add InternalDocs/qsbr.md. (gh-135411)Neil Schemenauer2025-06-231-1/+1
* gh-131798: Optimize `_UNARY_NEGATIVE` (GH-135223)Noam Cohen2025-06-232-2/+14
* gh-134584: Specialize POP_TOP by reference and type in JIT (GH-135761)Ken Jin2025-06-236-11/+130
* gh-135645: Added `supports_isolated_interpreters` to `sys.implementation` (#1...sobolevn2025-06-211-0/+12
* gh-131798: JIT: Optimize _CALL_LEN when the length is known (#135260)Tomas R.2025-06-202-1/+33
* gh-135608: Add a null check for attribute promotion to fix a JIT crash (GH-13...Ken Jin2025-06-203-2/+17
* gh-135543: Emit sys.remote_exec audit event when sys.remote_exec is called (G...Nadeshiko Manju2025-06-192-1/+6
* gh-135379: Move PyLong_CheckCompact to private header and rename it (GH-135707)Ken Jin2025-06-194-19/+19
* GH-135379: Specialize int operations for compact ints only (GH-135668)Mark Shannon2025-06-197-122/+294