summaryrefslogtreecommitdiffstats
path: root/Include/internal
Commit message (Expand)AuthorAgeFilesLines
* Fix code comment regarding DK_ENTRIES (GH-113960)Matthias Diener2024-03-121-1/+1
* gh-85283: Convert grp extension to the limited C API (#116611)Victor Stinner2024-03-124-6/+0
* gh-110850: Fix _PyTime_FromSecondsDouble() API (#116606)Victor Stinner2024-03-111-2/+4
* gh-116167: Allow disabling the GIL with `PYTHON_GIL=0` or `-X gil=0` (#116338)Brett Simmers2024-03-112-0/+17
* GH-116596: Better determination of escaping uops. (GH-116597)Mark Shannon2024-03-112-26/+26
* gh-112536: Define MI_TSAN to 1 for --with-mimalloc and --with-thread-sanitize...Donghee Na2024-03-111-0/+4
* GH-116468: Use constants instead of `oparg` in stack effects when `oparg` is ...Mark Shannon2024-03-111-5/+5
* gh-112075: Support freeing object memory via QSBR (#116344)Dino Viehland2024-03-082-3/+27
* gh-116381: Remove bad specializations, add fail stats (GH-116464)Ken Jin2024-03-075-37/+3
* gh-116381: Specialize CONTAINS_OP (GH-116385)Ken Jin2024-03-067-103/+167
* gh-115103: Delay reuse of mimalloc pages that store PyObjects (#115435)Sam Gross2024-03-063-1/+24
* GH-113710: Tier 2 optimizer: check the function instead of checking globals. ...Mark Shannon2024-03-062-113/+110
* gh-115103: Enable internal mimalloc assertions in debug builds (#116343)Sam Gross2024-03-051-1/+1
* chore: fix typos (#116345)cui fliter2024-03-055-6/+6
* GH-115685: Split `_TO_BOOL_ALWAYS_TRUE` into micro-ops (GH-116352)Mark Shannon2024-03-053-23/+23
* GH-115819: Eliminate Boolean guards when value is known (GH-116355)Mark Shannon2024-03-051-0/+1
* GH-115685: Optimize `TO_BOOL` and variants based on truthiness of input. (GH-...Mark Shannon2024-03-051-0/+1
* GH-116226: include `pthread_stubs.h` in `pycore_pythreads.h` (#116227)Brett Cannon2024-03-011-1/+2
* gh-114271: Make `_thread.ThreadHandle` thread-safe in free-threaded builds (G...mpage2024-03-011-0/+13
* gh-115999: Disable the specializing adaptive interpreter in free-threaded bui...Brett Simmers2024-03-011-0/+5
* gh-115685: Type/values propagate for TO_BOOL in tier 2 (GH-115686)Ken Jin2024-02-292-20/+23
* gh-116088: Insert bottom checks after all sym_set_...() calls (#116089)Guido van Rossum2024-02-291-4/+4
* GH-115802: JIT "small" code for Windows (GH-115964)Brandt Bucher2024-02-2915-41/+47
* gh-115859: Re-enable T2 optimizer pass by default (#116062)Guido van Rossum2024-02-281-0/+2
* gh-115816: Improve internal symbols API in optimizer (#116028)Guido van Rossum2024-02-281-5/+7
* gh-115773: Add tests to exercise the _Py_DebugOffsets structure (#115774)Pablo Galindo Salgado2024-02-282-35/+47
* gh-105858: Expose some union-related objects as internal APIs (GH-116025)Jelle Zijlstra2024-02-281-2/+4
* gh-105858: Improve AST node constructors (#105880)Jelle Zijlstra2024-02-284-0/+6
* GH-115816: Assorted naming and formatting changes to improve maintainability....Mark Shannon2024-02-271-38/+35
* GH-115816: Make tier2 optimizer symbols testable, and add a few tests. (GH-11...Mark Shannon2024-02-271-0/+85
* gh-112075: Iterating a dict shouldn't require locks (#115108)Dino Viehland2024-02-221-0/+1
* gh-115304: Add doc for initializing PyMutex as a global variable (#115305)AN Long2024-02-211-0/+3
* gh-110850: Cleanup PyTime API: PyTime_t are nanoseconds (#115753)Victor Stinner2024-02-211-9/+4
* gh-110850: Replace private _PyTime_MAX with public PyTime_MAX (#115751)Victor Stinner2024-02-211-5/+1
* gh-112087: Make list_{concat, repeat, inplace_repeat, ass_item) to be thread...Donghee Na2024-02-211-0/+6
* gh-112075: Accessing a single element should optimistically avoid locking (#1...Dino Viehland2024-02-211-1/+3
* gh-112075: Make PyDictKeysObject thread-safe (#114741)Dino Viehland2024-02-211-0/+6
* gh-110850: Use public PyTime functions (#115746)Victor Stinner2024-02-201-1/+0
* gh-110850: Rename internal PyTime C API functions (#115734)Victor Stinner2024-02-201-32/+18
* gh-115103: Implement delayed free mechanism for free-threaded builds (#115367)Sam Gross2024-02-205-0/+27
* gh-110850: Cleanup pycore_time.h includes (#115724)Victor Stinner2024-02-204-6/+0
* gh-115491: Keep some fields valid across allocations (free-threading) (#115573)Sam Gross2024-02-201-0/+2
* gh-110850: Replace _PyTime_t with PyTime_t (#115719)Victor Stinner2024-02-206-47/+47
* gh-112175: Add `eval_breaker` to `PyThreadState` (#115194)Brett Simmers2024-02-204-32/+34
* gh-115687: Split up guards from COMPARE_OP (GH-115688)Ken Jin2024-02-203-105/+105
* GH-115457: Support splitting and replication of micro ops. (GH-115558)Mark Shannon2024-02-203-221/+311
* GH-112354: Initial implementation of warm up on exits and trace-stitching (GH...Mark Shannon2024-02-205-46/+59
* gh-111968: Split _Py_async_gen_asend_freelist out of _Py_async_gen_fr… (gh-...Donghee Na2024-02-171-4/+9
* gh-115103: Implement delayed memory reclamation (QSBR) (#115180)Sam Gross2024-02-164-1/+150
* gh-112529: Make the GC scheduling thread-safe (#114880)Sam Gross2024-02-162-0/+8