summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
...
* [3.13] gh-111495: Add tests for PyNumber C API (GH-111996) (#123375)Miss Islington (bot)2024-09-021-0/+161
* [3.13] gh-123213: Fixed xml.etree.ElementTree.Element.extend and assignment t...Miss Islington (bot)2024-09-021-10/+2
* [3.13] gh-122688: Fix support of var-positional parameter in Argument Clinic ...Serhiy Storchaka2024-09-022-57/+94
* [3.13] gh-100256: Skip inaccessible registry keys in the WinAPI mimetype impl...Miss Islington (bot)2024-09-021-1/+1
* [3.13] gh-123448: Move `_PyNoDefault_Type` to the static types array (GH-1234...Miss Islington (bot)2024-08-291-3/+0
* [3.13] gh-111495: Add tests for PyTuple C API (GH-118757) (GH-123371)Sergey B Kirpichev2024-08-275-2/+249
* [3.13] gh-123243: Fix reference leak in `_decimal` (GH-123244) (#123280)Miss Islington (bot)2024-08-241-2/+24
* [3.13] gh-122081: fixed crash in decimal.IEEEContext() (GH-122082) (#123136)Miss Islington (bot)2024-08-191-2/+2
* [3.13] gh-116622: Don't expose `FICLONE` ioctl on Android (GH-122522) (#122539)Miss Islington (bot)2024-08-161-0/+5
* [3.13] gh-116622: Rename build variable MODULE_LDFLAGS back to LIBPYTHON (GH-...Miss Islington (bot)2024-08-091-1/+1
* [3.13] gh-122695: Fix double-free when using `gc.get_referents` with a freed ...Peter Bierma2024-08-091-11/+0
* [3.13] gh-118814: Fix the TypeVar constructor when name is passed by keyword ...Serhiy Storchaka2024-08-082-1/+93
* [3.13] gh-122728: Fix SystemError in PyEval_GetLocals() (GH-122735) (#122757)Miss Islington (bot)2024-08-061-0/+7
* [3.13] gh-120974: Make asyncio `swap_current_task` safe in free-threaded buil...Miss Islington (bot)2024-08-021-14/+23
* [3.13] gh-122311: Fix a refleak in pickle (GH-122411) (GH-122415)Miss Islington (bot)2024-07-291-0/+1
* Revert "[3.13] gh-120713: Normalize year with century for datetime.strftime (...Serhiy Storchaka2024-07-291-50/+4
* [3.13] gh-122311: Fix some error messages in pickle (GH-122386) (GH-122387)Miss Islington (bot)2024-07-291-3/+3
* [3.13] gh-122332: Fix missing `NULL` check in `asyncio.Task.get_coro` (GH-122...Miss Islington (bot)2024-07-271-1/+5
* [3.13] GH-121832: Assert that the version number of static builtin types is n...Miss Islington (bot)2024-07-251-46/+42
* [3.13] gh-121489: Export private _PyBytes_Join() again (GH-122267) (#122287)Miss Islington (bot)2024-07-251-1/+0
* [3.13] gh-82951: Fix serializing by name in pickle protocols < 4 (GH-122149) ...Miss Islington (bot)2024-07-251-17/+36
* [3.13] gh-113785: csv: fields starting with escapechar are not quoted (GH-122...Miss Islington (bot)2024-07-251-1/+0
* [3.13] gh-120974: Make _asyncio._leave_task atomic in the free-threaded build...Miss Islington (bot)2024-07-232-28/+27
* [3.13] gh-120974: Make _asyncio._enter_task atomic in the free-threaded build...Miss Islington (bot)2024-07-231-10/+5
* [3.13] gh-121957: Emit audit events for `python -i` and `python -m asyncio` (...Miss Islington (bot)2024-07-221-0/+4
* [3.13] gh-121621: Disable asyncio freelist in free-threaded build (GH-122046)...Sam Gross2024-07-191-5/+17
* [3.13] gh-120973: Fix thread-safety issues with `threading.local` (GH-121655)...Miss Islington (bot)2024-07-191-150/+234
* [3.13] gh-121905: Consistently use "floating-point" instead of "floating poin...Serhiy Storchaka2024-07-1914-37/+37
* [3.13] gh-120289: Add external timer in traverse of _lsprof.Profiler (GH-1219...Miss Islington (bot)2024-07-191-0/+1
* [3.13] gh-120289: Disallow disable() and clear() in external timer to prevent...Miss Islington (bot)2024-07-181-1/+19
* [3.13] gh-121621: Move asyncio_running_loop to private struct (GH-121939) (#1...Miss Islington (bot)2024-07-181-4/+4
* [3.13] gh-121925: Fix uninitialized variables in `main.c` (GH-121926) (#121931)Miss Islington (bot)2024-07-171-2/+6
* [3.13] gh-120678: pyrepl: Include globals from modules passed with `-i` (GH-1...Miss Islington (bot)2024-07-171-1/+49
* [3.13] gh-113993: Don't immortalize in PyUnicode_InternInPlace; keep immortal...Petr Viktorin2024-07-171-3/+8
* [3.13] gh-121621: Move asyncio running loop to thread state (GH-121695) (GH-1...Miss Islington (bot)2024-07-161-104/+12
* [3.13] gh-121791: Check for `NULL` in `MethodDescriptor2_new` in `_testcapi` ...Miss Islington (bot)2024-07-161-0/+3
* [3.13] gh-76785: Expand How Interpreter Channels Handle Interpreter Finalizat...Miss Islington (bot)2024-07-153-110/+321
* [3.13] gh-76785: Expand How Interpreter Queues Handle Interpreter Finalizatio...Miss Islington (bot)2024-07-151-59/+184
* [3.13] gh-121621: Use PyMutex for writes to asyncio state (GH-121622) (#121774)Sam Gross2024-07-151-1/+12
* [3.13] Update retroactive comments from GH-117741 (segfault in `FutureIter_de...Miss Islington (bot)2024-07-121-3/+0
* [3.13] gh-121103: Put free-threaded libraries in `lib/python3.14t` (GH-121293...Miss Islington (bot)2024-07-112-3/+10
* [3.13] gh-121592: Make select.poll() and related objects thread-safe (GH-1215...Miss Islington (bot)2024-07-112-22/+96
* [3.13] gh-121596: Fix Sharing Interpreter Channels (gh-121600)Miss Islington (bot)2024-07-101-2/+2
* [3.13] gh-121368: Fix seq lock memory ordering in _PyType_Lookup (GH-121388) ...Miss Islington (bot)2024-07-081-0/+1
* [3.13] gh-121374: Correct docstrings in `_interpchannels` (gh-121501)Miss Islington (bot)2024-07-081-2/+2
* [3.13] gh-120782: Update internal type cache when reloading datetime (GH-1208...neonene2024-07-031-0/+6
* [3.13] gh-116181: Remove Py_BUILD_CORE_BUILTIN and Py_BUILD_CORE_MODULE in ro...Miss Islington (bot)2024-07-031-5/+0
* [3.13] gh-117657: Fix data races reported by TSAN in some set methods (GH-120...Miss Islington (bot)2024-07-011-6/+3
* [3.13] gh-113565: Improve and harden detection of curses dependencies (GH-119...Miss Islington (bot)2024-07-012-2/+8
* [3.13] gh-120713: Normalize year with century for datetime.strftime (GH-12082...Miss Islington (bot)2024-06-291-4/+50