summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* GH-115651: Convert `LOAD_MODULE_ATTR` into `LOAD_INLINE_CONST` when the modul...Mark Shannon2024-02-226-95/+182
* gh-115796: fix exception table construction in _testinternalcapi.assemble_cod...Irit Katriel2024-02-221-6/+11
* gh-110850: Cleanup PyTime API: PyTime_t are nanoseconds (#115753)Victor Stinner2024-02-214-59/+26
* gh-110850: Replace private _PyTime_MAX with public PyTime_MAX (#115751)Victor Stinner2024-02-211-2/+2
* Delete unused sym_clear_flag function. (#115744)Benjamin Peterson2024-02-211-6/+0
* gh-110850: Use public PyTime functions (#115746)Victor Stinner2024-02-202-2/+2
* gh-110850: Rename internal PyTime C API functions (#115734)Victor Stinner2024-02-208-32/+30
* Tier 2 cleanups and tweaks (#115534)Guido van Rossum2024-02-204-44/+109
* gh-115733: Fix crash involving exhausted list iterator (#115740)Sam Gross2024-02-203-2/+4
* gh-115735: Fix current executor NULL before _START_EXECUTOR (#115736)Ken Jin2024-02-201-2/+2
* gh-115103: Implement delayed free mechanism for free-threaded builds (#115367)Sam Gross2024-02-202-0/+9
* gh-110850: Cleanup pycore_time.h includes (#115724)Victor Stinner2024-02-207-8/+15
* gh-115491: Keep some fields valid across allocations (free-threading) (#115573)Sam Gross2024-02-201-0/+15
* gh-110850: Replace _PyTime_t with PyTime_t (#115719)Victor Stinner2024-02-2010-182/+182
* gh-112175: Add `eval_breaker` to `PyThreadState` (#115194)Brett Simmers2024-02-2012-130/+218
* gh-110850: PyTime_Time() return 0 on success (GH-115713)Victor Stinner2024-02-201-1/+1
* gh-115687: Split up guards from COMPARE_OP (GH-115688)Ken Jin2024-02-205-55/+88
* GH-115457: Support splitting and replication of micro ops. (GH-115558)Mark Shannon2024-02-206-51/+422
* GH-112354: Initial implementation of warm up on exits and trace-stitching (GH...Mark Shannon2024-02-2011-135/+580
* gh-96497: Mangle name before symtable lookup in 'symtable_extend_namedexpr_sc...wookie1842024-02-171-4/+10
* gh-115103: Implement delayed memory reclamation (QSBR) (#115180)Sam Gross2024-02-163-0/+323
* gh-115480: Type / constant propagation for float binary uops (GH-115550)Peter Lazorchak2024-02-162-6/+117
* gh-112529: Make the GC scheduling thread-safe (#114880)Sam Gross2024-02-161-15/+48
* gh-115480: Minor fixups in int constant propagation (GH-115507)Ken Jin2024-02-163-132/+59
* gh-115503: Fix `run_presite` error handling (#115504)Nikita Sobolev2024-02-161-1/+0
* gh-111968: Split _Py_dictkeys_freelist out of _Py_dict_freelist (gh-115505)Donghee Na2024-02-162-16/+16
* gh-113743: Use per-interpreter locks for types (#115541)Dino Viehland2024-02-161-1/+1
* gh-113743: Make the MRO cache thread-safe in free-threaded builds (#113930)Dino Viehland2024-02-152-0/+74
* gh-115420: Fix translation of exception hander targets by _testinternalcapi.o...Irit Katriel2024-02-151-1/+1
* gh-115376: fix segfault in _testinternalcapi.compiler_codegen on bad input (#...Irit Katriel2024-02-151-14/+28
* gh-115124: Use _PyObject_ASSERT() in gc.c (#115125)Victor Stinner2024-02-151-15/+22
* gh-115347: avoid emitting redundant NOP for the docstring with -OO (#115494)Irit Katriel2024-02-151-18/+20
* gh-114626: add PyCFunctionFast and PyCFunctionFastWithKeywords (GH-114627)David Hewitt2024-02-153-21/+21
* gh-115480: Type and constant propagation for int BINARY_OPs (GH-115478)Ken Jin2024-02-153-16/+126
* gh-115482: Assume the Main Interpreter is Always Running "main" (gh-115484)Eric Snow2024-02-141-1/+8
* gh-112087: Make __sizeof__ and listiter_{len, next} to be threadsafe (gh-114843)Donghee Na2024-02-143-6/+10
* gh-111968: Rename freelist related struct names to Eric's suggestion (gh-115329)Donghee Na2024-02-146-39/+39
* gh-76785: Improved Subinterpreters Compatibility with 3.12 (gh-115424)Eric Snow2024-02-133-665/+729
* GH-113710: Improve `_SET_IP` and `_CHECK_VALIDITY` (GH-115248)Mark Shannon2024-02-135-33/+74
* GH-113710: Backedge counter improvements. (GH-115166)Mark Shannon2024-02-135-50/+70
* gh-114058: Foundations of the Tier2 redundancy eliminator (GH-115085)Ken Jin2024-02-138-76/+2495
* gh-110850: Add PyTime_t C API (GH-115215)Petr Viktorin2024-02-121-32/+70
* GH-113710: Fix updating of dict version tag and add watched dict stats (GH-11...Mark Shannon2024-02-123-20/+15
* GH-114695: Add `sys._clear_internal_caches` (GH-115152)Brandt Bucher2024-02-125-65/+84
* gh-115011: Improve support of __index__() in setters of members with unsigned...Serhiy Storchaka2024-02-111-37/+44
* gh-76763: Make chr() always raising ValueError for out-of-range values (GH-11...Serhiy Storchaka2024-02-102-24/+22
* gh-111968: Refactor _PyXXX_Fini to integrate with _PyObject_ClearFreeLists (g...Donghee Na2024-02-105-37/+9
* gh-110481: Implement inter-thread queue for biased reference counting (#114824)Sam Gross2024-02-095-2/+282
* gh-107944: Improve error message for getargs with bad keyword arguments (#114...Shantanu2024-02-081-12/+58
* gh-112066: Use `PyDict_SetDefaultRef` in place of `PyDict_SetDefault`. (#112211)Sam Gross2024-02-071-12/+17