summaryrefslogtreecommitdiffstats
path: root/Include
Commit message (Expand)AuthorAgeFilesLines
* Python 3.15.0a4v3.15.0a4Hugo van Kemenade2 days1-2/+2
* gh-134584: Eliminate redundant refcounting from `_LOAD_ATTR_WITH_HINT` (GH-14...Hai Zhu2025-12-233-6/+6
* gh-138122: Allow tachyon to write and read binary output (#142730)Pablo Galindo Salgado2025-12-224-0/+63
* GH-139922: Tail calling for MSVC (VS 2026) (GH-143068)Chris Eibl2025-12-221-0/+16
* gh-143057: avoid locking in `tracemalloc` C-APIs when it is not enabled (#143...Kumar Aditya2025-12-221-1/+4
* gh-122581: Use parser mutex in default build for subinterpreters (gh-142959)Sam Gross2025-12-202-18/+0
* gh-120321: Make gi_frame_state transitions atomic in FT build (gh-142599)Sam Gross2025-12-198-569/+619
* gh-142961: Fix constant folding len(tuple) in JIT (GH-142963)Ken Jin2025-12-192-769/+795
* JIT: Rename trampoline.c to shim.c (#142974)Diego Russo2025-12-191-1/+1
* GH-134584: Remove redundant refcount for `BINARY_OP_SUBSCR_STR_INT` (#142844)Savannah Ostrowski2025-12-183-6/+6
* gh-134584: Eliminate redundant refcounting from _BINARY_OP_SUBSCR_LIST_INT (G...LloydZ2025-12-183-5/+5
* gh-142890: remove unnecessary interp parameter from dict functions and `_PyDi...Kumar Aditya2025-12-181-2/+1
* GH-142513: Reimplement executor management (GH-142931)Mark Shannon2025-12-182-8/+0
* gh-142419: Add mmap.set_name method for user custom annotation (gh-142480)Donghee Na2025-12-181-8/+10
* gh-134584: Remove redundant refcount from _BINARY_OP_ADD_UNICODE (gh-142825)Donghee Na2025-12-183-748/+745
* gh-134584: Eliminate redundant refcounting from `_STORE_ATTR_WITH_HINT` (GH-1...Nadeshiko Manju2025-12-163-5/+5
* gh-134584: Eliminate redundant refcounting from `_LOAD_ATTR_INSTANCE_VALUE` (...Nadeshiko Manju2025-12-163-315/+321
* Post 3.15.0a3Hugo van Kemenade2025-12-161-1/+1
* Python 3.15.0a3v3.15.0a3Hugo van Kemenade2025-12-161-2/+2
* GH-134584: Remove redundant refcount from `_STORE_ATTR_SLOT` (#142729)Savannah Ostrowski2025-12-153-5/+5
* gh-134584: JIT: Eliminate redundant refcount ops for X_INT (GH-142765)Ken Jin2025-12-153-782/+773
* gh-134584: Eliminate redundant refcounting from `_STORE_ATTR_INSTANCE_VALUE` ...Nadeshiko Manju2025-12-153-5/+5
* gh-134584: Remove custom float decref ops (GH-142576)Ken Jin2025-12-154-1122/+1033
* GH-142718: JIT: Fix crash due to incorrect caching on side exits when exiting...Mark Shannon2025-12-152-283/+295
* gh-142472: Clean-up _PyStackRef functions (gh-142479)Sam Gross2025-12-152-195/+53
* gh-134584: Eliminate redundant refcounting from _STORE_SUBSCR_DICT (GH-142712)Donghee Na2025-12-153-5/+5
* gh-134584: Eliminate redundant refcounting from _CALL_LIST_APPEND (GH-142711)Nadeshiko Manju2025-12-153-687/+696
* gh-138122: Add --subprocesses flag to profile child processes in tachyon (#14...Pablo Galindo Salgado2025-12-154-0/+7
* gh-140414: streamline thread state access in `asyncio` (#142742)Kumar Aditya2025-12-151-0/+3
* gh-134584: Eliminate redundant refcounting from _STORE_SUBSCR_LIST_INT (gh-14...Donghee Na2025-12-143-5/+5
* gh-134584: Eliminate redundant refcounting from `_CALL_BUILTION_O` (GH-142695)PuQing2025-12-143-7/+7
* gh-134584: Eliminate redundant refcounting from `_CALL_STR_1` (GH-136070)Nadeshiko Manju2025-12-143-7/+7
* gh-134584: Cleanups for GH-135860 (GH-142604)Ken Jin2025-12-133-7/+7
* gh-132657: Add lock-free set contains implementation (#132290)Neil Schemenauer2025-12-131-0/+3
* gh-134584: Revert partially GH-135860 (GH-142620)Ken Jin2025-12-123-5/+5
* gh-142217: Deprecate the private _Py_Identifier C API (#142221)Victor Stinner2025-12-123-3/+3
* gh-142534: Avoid TSan warnings in dictobject.c (gh-142544)Sam Gross2025-12-112-0/+14
* gh-138122: Add exception profiling mode to the sampling profiler (#142561)Pablo Galindo Salgado2025-12-111-0/+12
* gh-134584: Eliminate redundant refcounting from ``_CALL_LEN`` (gh-136104)Donghee Na2025-12-113-5/+5
* gh-134584: Eliminate redundant refcounting from `_CALL_TUPLE_1` (GH-135860)Noam Cohen2025-12-113-5/+5
* GH-135379: Top of stack caching for the JIT. (GH-135465)Mark Shannon2025-12-118-106/+5106
* gh-123241: Don't modify ref count during visitation (GH-142232)Dino Viehland2025-12-111-0/+5
* gh-138122: Make the tachyon profiler opcode-aware (#142394)Pablo Galindo Salgado2025-12-114-0/+7
* gh-141976: Protect against non-progressing specializations in tracing JIT (GH...Ken Jin2025-12-101-0/+1
* gh-142447: Fix cast warning in pycore_backoff.h (#142465)Victor Stinner2025-12-091-1/+1
* gh-140222: Increase stack margin on debug build (#142452)Victor Stinner2025-12-091-3/+3
* gh-142342: Fix m68k assembler operand constraints for `%fpcr` access (gh-142343)John Paul Adrian Glaubitz2025-12-091-3/+3
* gh-124379: Document _PyStackRef (gh-142321)Sam Gross2025-12-081-7/+0
* gh-141770: Annotate anonymous mmap usage if "-X dev" is used (gh-142079)Donghee Na2025-12-081-0/+45
* gh-141732: Fix `ExceptionGroup` repr changing when original exception sequenc...dr-carlos2025-12-071-0/+1