summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
...
* gh-58124: Avoid CP_UTF8 in UnicodeDecodeError (#137415)Victor Stinner2025-08-061-1/+1
* Use PyConfig_Get() in frozenmain.c (#137421)Victor Stinner2025-08-061-9/+8
* gh-137288: Fix bug where boolean expressions are not associated with the corr...Irit Katriel2025-08-051-0/+7
* gh-137238: Fix data race in `_Py_slot_tp_getattr_hook` (gh-137240)Sam Gross2025-08-051-8/+1
* gh-134170: Add colorization to unraisable exceptions (#134183)Peter Bierma2025-08-041-1/+26
* gh-137308: Replace a single docstring with `pass` in `-OO` mode (#137318)sobolevn2025-08-021-1/+26
* GH-136410: Faster side exits by using a cold exit stub (GH-136411)Mark Shannon2025-08-019-75/+174
* GH-134291: Support older macOS deployment targets for JIT builds (GH-137211)Brandt Bucher2025-07-301-14/+1
* gh-137185: Fix `_Py_DumpStack()` async signal safety (gh-137187)Sam Gross2025-07-291-0/+10
* gh-131338: Disable computed stack limit checks on non-glibc linux (#134336)R. David Murray2025-07-281-1/+5
* GH-132732: Use pure op machinery to optimize `COMPARE_OP_INT/FLOAT/STR` (#137...Savannah Bailey2025-07-263-36/+184
* gh-137084: remove multiple calls to `get_gc_state` in `gc.c` (#137085)Sergey Miryanov2025-07-251-1/+1
* gh-136870: fix data races in instrumentation of bytecode (#136994)Kumar Aditya2025-07-241-8/+12
* gh-137054: remove obsolete counting of objects in young generation under `Py_...Sergey Miryanov2025-07-241-9/+0
* gh-136459: Use platform-specific type in perf_jit_trampoline (GH-137031)Petr Viktorin2025-07-231-0/+4
* gh-136459: Add perf trampoline support for macOS (#136461)Nazım Can Altınova2025-07-222-3/+45
* Revert "gh-112068: C API: Add support of nullable arguments in PyArg_Parse (G...Serhiy Storchaka2025-07-221-160/+87
* gh-124621: Emscripten: Fix __syscall_ioctl patch (GH-136993)Hood Chatham2025-07-221-2/+6
* gh-124621: Emscripten: Support pyrepl in browser (GH-136931)Hood Chatham2025-07-221-9/+107
* gh-133296: Publicly expose critical section API that accepts PyMutex (gh-135899)Nathan Goldbaum2025-07-211-0/+18
* gh-136870: fix data race in `PyThreadState_Clear` on `sys_tracing_threads` (#...Kumar Aditya2025-07-211-0/+9
* 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