summaryrefslogtreecommitdiffstats
path: root/Include
Commit message (Expand)AuthorAgeFilesLines
...
* [3.13] gh-121489: Export private _PyBytes_Join() again (GH-122267) (#122287)Miss Islington (bot)2024-07-252-4/+4
* [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-118124: fix assert related C++ checks on Solaris/Illumos (GH-121974...Jakub KulĂ­k2024-07-221-5/+6
* [3.13] gh-120973: Fix thread-safety issues with `threading.local` (GH-121655)...Miss Islington (bot)2024-07-191-0/+8
* [3.13] gh-121905: Consistently use "floating-point" instead of "floating poin...Serhiy Storchaka2024-07-192-2/+2
* [3.13] gh-118934: Make PyEval_GetLocals return borrowed reference (GH-119769)...Miss Islington (bot)2024-07-181-0/+4
* Post 3.13.0b4Thomas Wouters2024-07-181-1/+1
* Python 3.13.0b4v3.13.0b4Thomas Wouters2024-07-181-2/+2
* [3.13] gh-121621: Move asyncio_running_loop to private struct (GH-121939) (#1...Miss Islington (bot)2024-07-182-2/+2
* [3.13] gh-121528: Fix _PyObject_Init() assertion for stable ABI (GH-121725) (...Miss Islington (bot)2024-07-171-2/+26
* [3.13] GH-121583: Remove dependency from pystats.h to internal header file (G...Miss Islington (bot)2024-07-161-5/+5
* [3.13] gh-121621: Move asyncio running loop to thread state (GH-121695) (GH-1...Miss Islington (bot)2024-07-165-7/+2
* [3.13] gh-121546: Disable contextvar caching on free-threading build (GH-1217...Miss Islington (bot)2024-07-151-0/+2
* [3.13] gh-121700 Emscripten trampolines not quite right since GH-106219 (GH-1...Miss Islington (bot)2024-07-141-7/+1
* [3.13] gh-120642: Move _PyCode_CODE() to the internal C API (GH-121644) (#121...Miss Islington (bot)2024-07-132-3/+3
* [3.13] gh-120198: Stop the world when setting __class__ on free-threaded buil...Ken Jin2024-07-122-8/+2
* [3.13] gh-117482: Fix Builtin Types Slot Wrappers (gh-121630)Miss Islington (bot)2024-07-111-0/+1
* [3.13] gh-89364: Export PySignal_SetWakeupFd() function (GH-121537) (#121582)Miss Islington (bot)2024-07-101-1/+1
* [3.13] gh-121368: Fix seq lock memory ordering in _PyType_Lookup (GH-121388) ...Miss Islington (bot)2024-07-085-4/+30
* [3.13] gh-121487: Fix deprecation warning for ATOMIC_VAR_INIT in mimalloc (gh...Miss Islington (bot)2024-07-081-2/+6
* [3.13] gh-106597: Remove unnecessary CFrame offsets (GH-121369) (#121370)Miss Islington (bot)2024-07-041-7/+0
* [3.13] gh-112136: Restore removed _PyArg_Parser (GH-121262) (#121344)Miss Islington (bot)2024-07-034-24/+32
* [3.13] gh-106597: Add more offsets to _Py_DebugOffsets (GH-121311) (#121312)Miss Islington (bot)2024-07-032-0/+18
* [3.13] gh-115773: Add sizes to debug offset structure (GH-120112) (#121283)Miss Islington (bot)2024-07-022-0/+19
* [3.13] gh-117657: Fix data races reported by TSAN in some set methods (GH-120...Miss Islington (bot)2024-07-011-0/+14
* [3.13] gh-113565: Improve and harden detection of curses dependencies (GH-119...Miss Islington (bot)2024-07-011-5/+13
* [3.13] gh-119447: Fix build with _PY_SHORT_FLOAT_REPR == 0 (GH-121178) (#121179)Miss Islington (bot)2024-06-301-7/+3
* gh-121115: Skip __index__ in PyLong_AsNativeBytes by default (GH-121118)Miss Islington (bot)2024-06-281-2/+5
* Post 3.13.0b3Thomas Wouters2024-06-271-1/+1
* Python 3.13.0b3v3.13.0b3Thomas Wouters2024-06-271-2/+2
* [3.13] gh-120838: Add _PyThreadState_WHENCE_FINI (gh-121013)Miss Islington (bot)2024-06-263-12/+10
* [3.13] gh-120593: Fix const qualifier in pyatomic.h (GH-121055) (#121057)Miss Islington (bot)2024-06-261-4/+4
* [3.13] gh-120642: Move private PyCode APIs to the internal C API (#120643) (#...Victor Stinner2024-06-267-219/+209
* [3.13] gh-113993: Allow interned strings to be mortal, and fix related issues...Petr Viktorin2024-06-245-818/+1545
* [3.13] gh-119521: Rename IncompleteInputError to _IncompleteInputError and re...Miss Islington (bot)2024-06-242-1/+5
* [3.13] gh-119344: Make critical section API public (GH-119353) (#120856)Sam Gross2024-06-214-150/+219
* [3.13] gh-117511: Make PyMutex public in the non-limited API (GH-117731) (#12...Sam Gross2024-06-208-75/+89
* [3.13] gh-119258: Backport optimizer frame fixes in GH-119365 (GH-120699)Ken Jin2024-06-201-3/+3
* [3.13] GH-119462: Enforce invariants of type versioning. Backport of GH-12073...Mark Shannon2024-06-201-1/+1
* [3.13] Fix typos in comments (GH-120481) (#120774)Miss Islington (bot)2024-06-202-2/+2
* [3.13] gh-118789: Add `PyUnstable_Object_ClearWeakRefsNoCallbacks` (GH-118807...Miss Islington (bot)2024-06-182-1/+3
* [3.13] gh-119933: Improve ``SyntaxError`` message for invalid type parameters...Jelle Zijlstra2024-06-171-5/+26
* [3.13] gh-117657: Make PyType_HasFeature (exported version) atomic (GH-120484...Miss Islington (bot)2024-06-151-1/+5
* [3.13] gh-120161: Fix a Crash in the _datetime Module (gh-120518)Miss Islington (bot)2024-06-141-9/+15
* [3.13] gh-117657: Make PyType_HasFeature atomic (GH-120210) (#120443)Miss Islington (bot)2024-06-132-1/+4
* [3.13] gh-71587: Drop local reference cache to `_strptime` module in `_dateti...Miss Islington (bot)2024-06-124-0/+6
* [3.13] gh-120326: Include <intrin.h> on Windows with Free Threading (GH-12032...Miss Islington (bot)2024-06-121-0/+4
* [3.13] gh-117657: Make Py_TYPE and Py_SET_TYPE thread safe (GH-120165) (GH-12...Miss Islington (bot)2024-06-122-1/+12
* [3.13] gh-117657: Fix TSAN race involving import lock (GH-118523) (#120169)Miss Islington (bot)2024-06-062-16/+14