summaryrefslogtreecommitdiffstats
path: root/Include/internal
Commit message (Expand)AuthorAgeFilesLines
* [3.13] gh-116008: Detect freed thread state in faulthandler (#141988) (#142017)Victor Stinner2025-11-271-0/+21
* [3.13] gh-140815: Fix faulthandler for invalid/freed frame (#140921) (#140985)Victor Stinner2025-11-053-4/+53
* [3.13] gh-137400: Fix thread-safety issues when profiling all threads (gh-137...Sam Gross2025-10-092-2/+4
* [3.13] gh-132744: Check recursion limit in _PY_FRAME_GENERAL (GH-132746) (GH-...Kliment Lamonov2025-08-223-122/+127
* [3.13] gh-87135: Hang non-main threads that attempt to acquire the GIL during...Gregory P. Smith2025-08-171-0/+13
* [3.13] Doc: fix duplicated words (GH-136086) (#137357)Brian Schubert2025-08-031-1/+1
* [3.13] GH-133136: Revise QSBR to reduce excess memory held (gh-135473) (gh-13...Neil Schemenauer2025-07-302-7/+26
* [3.13] gh-136759: revert rename `lock.h` to `pylock.h` (GH-137041) (#137075) ...Kumar Aditya2025-07-281-1/+1
* [3.13] gh-136759: rename `lock.h` to `pylock.h` (GH-137041) (#137075)AN Long2025-07-241-1/+1
* [3.13] gh-135607: remove null checking of weakref list in dealloc of extensio...Victor Stinner2025-07-011-0/+14
* [3.13] gh-125723: Fix crash with f_locals when generator frame outlive their ...Mikhail Efimov2025-06-131-1/+1
* [3.13] gh-133256: Add _Py_NONSTRING macro (#133257) (#135135)Victor Stinner2025-06-041-1/+1
* [3.13] gh-134875: Fix mimallc build error for the old compilers (gh-134994) (...Miss Islington (bot)2025-06-031-2/+2
* [3.13] gh-129748: Update mimalloc to use atomic store for mi_block_set_nextx ...Miss Islington (bot)2025-05-202-5/+5
* [3.13] gh-133767: Fix use-after-free in the unicode-escape decoder with an er...Serhiy Storchaka2025-05-202-0/+17
* [3.13] gh-132070: Use _PyObject_IsUniquelyReferenced in unicodeobject (gh-133...Donghee Na2025-04-291-0/+17
* [3.13] gh-131675: Fix `mi_atomic_yield` in mimalloc on 32-bit ARM (gh-131784)...Miss Islington (bot)2025-03-311-7/+10
* [3.13] gh-131082: Add missing guards for WIN32_LEAN_AND_MEAN (GH-131044) (#13...Miss Islington (bot)2025-03-112-2/+6
* [3.13] gh-130163: Fix crashes related to PySys_GetObject() (GH-130503) (GH-13...Serhiy Storchaka2025-02-251-2/+5
* [3.13] gh-130230: Fix crash in pow() with only Decimal third argument (GH-130...Miss Islington (bot)2025-02-181-0/+1
* [3.13] gh-128759: Fix accesses to `tp_version_tag`. (GH-129750) (GH-130042)Sam Gross2025-02-121-1/+72
* [3.13] gh-129668: Fix thread-safety of MemoryError freelist in free threaded ...Sam Gross2025-02-061-0/+3
* [3.13] gh-128679: Fix tracemalloc.stop() race conditions (#128897)Victor Stinner2025-01-181-1/+1
* [3.13] gh-127599: Fix _Py_RefcntAdd missing calls to _Py_INCREF_STAT_INC/_Py_...Ed Nutting2025-01-181-0/+4
* [3.13] gh-126742: Add _PyErr_SetLocaleString, use it for gdbm & dlerror messa...Miss Islington (bot)2024-12-171-0/+12
* [3.13] gh-127791: Fix, document, and test `PyUnstable_AtExit` (GH-127793) (#1...Peter Bierma2024-12-111-0/+1
* [3.13] gh-126076: Account for relocated objects in tracemalloc (GH-126077) (#...Pablo Galindo Salgado2024-12-111-5/+9
* [3.13] gh-127582: Make object resurrection thread-safe for free threading. (G...Sam Gross2024-12-051-0/+44
* [3.13] gh-122907: Fix Builds Without HAVE_DYNAMIC_LOADING Set (gh-122952) (#1...Miss Islington (bot)2024-12-031-0/+4
* [3.13] gh-126914: Store the Preallocated Thread State's Pointer in a PyInterp...Eric Snow2024-12-021-0/+2
* [3.13] gh-125703: Correctly honour tracemalloc hooks on specialized DECREF pa...Miss Islington (bot)2024-12-021-0/+5
* [3.13] gh-126688: Reinit import lock after fork (GH-126692) (GH-126765)Miss Islington (bot)2024-11-121-0/+1
* [3.13] gh-126303: Fix pickling and copying of os.sched_param objects (GH-1263...Miss Islington (bot)2024-11-051-0/+1
* [3.13] gh-123930: Better error for "from imports" when script shadows module ...Shantanu2024-10-241-0/+2
* [3.13] gh-125268: Use static string for "1e309" in AST (GH-125272) (GH-125280)Sam Gross2024-10-245-1/+8
* [3.13] gh-125859: Fix crash when `gc.get_objects` is called during GC (GH-125...Miss Islington (bot)2024-10-241-0/+10
* [3.13] gh-125444: Fix illegal instruction for older Arm architectures (GH-125...Miss Islington (bot)2024-10-161-2/+2
* [3.13] GH-124567: Revert the Incremental GC in 3.13 (#124770)T. Wouters2024-09-303-47/+17
* [3.13] gh-123747: Avoid static_assert() in internal header files (#123779) (#...Victor Stinner2024-09-062-4/+9
* [3.13] gh-123091: Use _Py_IsImmortalLoose() (#123511) (#123600)Victor Stinner2024-09-022-4/+4
* [3.13] gh-123484: Fix the debug offsets for PyLongObject (GH-123485) (#123499)Miss Islington (bot)2024-08-301-2/+2
* [3.13] Add debug offsets for free threaded builds (GH-123041) (#123055)Miss Islington (bot)2024-08-182-3/+82
* [3.13] gh-122584: Import mimalloc headers in a C++ context (GH-122587) (#123035)Miss Islington (bot)2024-08-161-0/+9
* [3.13] gh-122581: Avoid data races when collecting parser statistics (GH-1226...Miss Islington (bot)2024-08-071-0/+19
* [3.13] gh-120974: Make asyncio `swap_current_task` safe in free-threaded buil...Miss Islington (bot)2024-08-021-1/+6
* [3.13] GH-116090: Fire RAISE events from _FOR_ITER_TIER_TWO (GH-122419)Brandt Bucher2024-07-291-0/+1
* [3.13] gh-121489: Export private _PyBytes_Join() again (GH-122267) (#122287)Miss Islington (bot)2024-07-251-4/+0
* [3.13] gh-117482: Simplify the Fix For Builtin Types Slot Wrappers (gh-121932)Eric Snow2024-07-241-1/+0
* [3.13] gh-120974: Make _asyncio._leave_task atomic in the free-threaded build...Miss Islington (bot)2024-07-231-2/+6
* [3.13] gh-121905: Consistently use "floating-point" instead of "floating poin...Serhiy Storchaka2024-07-191-1/+1