summaryrefslogtreecommitdiffstats
path: root/Include
Commit message (Expand)AuthorAgeFilesLines
...
* gh-125139: use `_PyRecursiveMutex` in `_thread.RLock` (#125144)Kumar Aditya2024-10-141-1/+2
* gh-125323: Remove some unsafe Py_DECREFs in bytecodes.c, replacing them with ...Ken Jin2024-10-141-0/+3
* fix comment in _PyMutex_TryUnlock (#125319)Kumar Aditya2024-10-131-2/+2
* gh-124872: Change PyContext_WatchCallback to take PyObject (#124737)Richard Hansen2024-10-121-1/+1
* gh-111924: use atomics for interp id refcounting (#125321)Kumar Aditya2024-10-121-4/+2
* gh-125268: Use static string for "1e309" in AST (#125272)Sam Gross2024-10-105-3/+7
* GH-125174: Make immortal objects more robust, following design from PEP 683 (...Mark Shannon2024-10-104-49/+31
* gh-125196: Add a free list to PyUnicodeWriter (#125227)Victor Stinner2024-10-101-0/+2
* gh-124872: Refine contextvars documentation (#124773)Richard Hansen2024-10-091-6/+17
* gh-115999: Refactor `LOAD_GLOBAL` specializations to avoid reloading {globals...mpage2024-10-093-115/+130
* GH-120024: Tidy up pycore_stackref.h, splitting into GIL and free-threading s...Mark Shannon2024-10-091-101/+65
* gh-124502: Remove _PyUnicode_EQ() function (#125114)Victor Stinner2024-10-091-5/+1
* gh-125063: Emit slices as constants in the bytecode compiler (#125064)Michael Droettboom2024-10-081-1/+2
* gh-115999: Stop the world when invalidating function versions (#124997)mpage2024-10-082-1/+12
* gh-90102: Remove isatty call during regular open (#124922)Cody Maloney2024-10-084-0/+7
* gh-124502: Add PyUnicode_Equal() function (#124504)Victor Stinner2024-10-071-0/+4
* GH-121459: Streamline PyObject* to PyStackRef conversions by disallowing NULL...Mark Shannon2024-10-071-5/+9
* GH-119866: Spill the stack around escaping calls. (GH-124392)Mark Shannon2024-10-075-155/+161
* GH-116968: Remove branch from advance_backoff_counter (GH-124469)Mark Shannon2024-10-071-25/+21
* gh-87135: Hang non-main threads that attempt to acquire the GIL during finali...Jeremy Maitin-Shepard2024-10-022-1/+33
* gh-111178: Fix function signatures in longobject.c (#124895)Victor Stinner2024-10-021-0/+3
* gh-111178: Fix function signatures in weakrefobject.c (#124903)Victor Stinner2024-10-021-5/+5
* gh-111178: Fix function signatures in moduleobject.c (#124900)Victor Stinner2024-10-021-1/+1
* gh-116750: Add clear_tool_id function to unregister events and callbacks (#12...Tian Gao2024-10-012-0/+5
* gh-124218: Refactor per-thread reference counting (#124844)Sam Gross2024-10-015-86/+83
* gh-124296: Remove private dictionary version tag (PEP 699) (#124472)Sam Gross2024-10-013-41/+6
* gh-123961: Add a global state to _curses (#124729)Bénédikt Tran2024-09-291-2/+2
* gh-123497: New limit for Python integers on 64-bit platforms (GH-123724)Serhiy Storchaka2024-09-292-9/+7
* gh-124665: Add `_PyCodec_UnregisterError` and `_codecs._unregister_error` (#1...Bénédikt Tran2024-09-291-0/+11
* gh-124609: Fix _Py_ThreadId for Windows builds using MinGW (#124663)Tony Roberts2024-09-272-0/+10
* GH-118093: Fix off-by-one errors in tier-up thresholds (GH-124447)Brandt Bucher2024-09-271-2/+2
* GH-123516: Improve JIT memory consumption by invalidating cold executors (GH-...Savannah Ostrowski2024-09-275-39/+53
* gh-124153: Remove `_PyType_GetModuleByDef2` private function (GH-124261)neonene2024-09-261-1/+0
* gh-119333: get interp from tstate for PyContext watchers(#124444)Jason Fried2024-09-261-3/+2
* gh-41431: Add `datetime.time.strptime()` and `datetime.date.strptime()` (#120...Nice Zombies2024-09-254-4/+18
* gh-123884 Tee of tee was not producing n independent iterators (gh-124490)Raymond Hettinger2024-09-254-7/+0
* gh-124285: Fix bug where bool() is called multiple times for the same part of...Irit Katriel2024-09-253-25/+45
* gh-123923: Defer refcounting for `f_funcobj` in `_PyInterpreterFrame` (#124026)Sam Gross2024-09-242-9/+28
* gh-124127: Make Py_REFCNT() opaque in limited C API 3.14 (#124128)Victor Stinner2024-09-241-13/+21
* gh-119333: Add C api to have contextvar enter/exit callbacks (#119335)Jason Fried2024-09-243-0/+35
* gh-123990: Good bye WITH_FREELISTS macro (gh-124358)Donghee Na2024-09-242-17/+0
* gh-124344: Make `_PyObject_IS_GC()` use underscored `PyType_IS_GC()` (#124349)neonene2024-09-231-4/+4
* GH-124284: Add stats for refcount operations on immortal objects (GH-124288)Mark Shannon2024-09-234-0/+22
* GH-113655: Lower the C recursion limit for HPPA, PPC64 and SPARC (#124264)Sam James2024-09-231-0/+6
* gh-124153: Implement `PyType_GetBaseByToken()` and `Py_tp_token` slot (GH-124...neonene2024-09-183-0/+9
* gh-124064: Fix -Wconversion warnings in pycore_{long,object}.h (#124177)Victor Stinner2024-09-174-14/+15
* gh-124064: Fix -Wconversion warnings in pycore_{gc,list,stackref}.h (#124174)Victor Stinner2024-09-173-4/+4
* gh-123969: refactor _PyErr_RaiseSyntaxError and _PyErr_EmitSyntaxWarning out ...Irit Katriel2024-09-162-2/+5
* gh-124058: remove _PyCompile_IsNestedScope, roll it into _PyCompile_IsInterac...Irit Katriel2024-09-161-2/+1
* gh-121459: Deferred LOAD_GLOBAL (GH-123128)Ken Jin2024-09-132-1/+4