summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* [3.13] gh-139283: correctly handle `size` limit in `cursor.fetchmany()` (GH-1...Bénédikt Tran2025-10-073-18/+101
* [3.13] gh-139327: fix some reference leaks in `sqlite3` error branches (GH-13...Miss Islington (bot)2025-10-072-32/+42
* [3.13] gh-139400: Make sure that parent parsers outlive their subparsers in `...Sebastian Pipping2025-10-061-0/+25
* [3.13] gh-139210: Fix use-after-free in xml.etree.ElementTree.iterparse() (GH...Miss Islington (bot)2025-09-301-1/+1
* [3.13] gh-139312: Update bundled libexpat to 2.7.3 (GH-139319) (#139377)Miss Islington (bot)2025-09-275-23/+45
* [3.13] gh-130567: Fix possible crash in locale.strxfrm() (GH-138940) (GH-139266)Miss Islington (bot)2025-09-241-1/+3
* [3.13] gh-138008: Fix segfaults in _ctypes due to invalid argtypes (GH-138285...Petr Viktorin2025-09-181-15/+25
* [3.13] gh-138998: Upgrade vendored expat to 2.7.2 (GH-138999) (#139025)Miss Islington (bot)2025-09-188-374/+749
* [3.13] gh-138736: Fix sqlite3.Connection.blobopen 'row' parameter type and na...Erlend E. Aasland2025-09-172-7/+7
* [3.13] gh-137490: Fix signal.sigwaitinfo() on NetBSD (GH-137523) (GH-138936)Miss Islington (bot)2025-09-151-1/+7
* [3.13] gh-138779: Use the dev_t converter for st_rdev (GH-138780) (GH-138927)Miss Islington (bot)2025-09-151-1/+1
* [3.13] gh-137017: Ensure `Thread.is_alive()` only returns False after the und...Miss Islington (bot)2025-09-151-3/+6
* [3.13] gh-138659: Typo in the gc module docstring (GH-138660) (#138663)Miss Islington (bot)2025-09-081-1/+1
* [3.13] fix comment reference from man 7 signal to man 7 signal-safety (GH-138...Miss Islington (bot)2025-09-062-2/+2
* [3.13] gh-116946: fully implement GC protocol for `_curses_panel.panel` (GH-1...Bénédikt Tran2025-09-061-13/+76
* [3.13] gh-60462: Fix locale.strxfrm() on Solaris (GH-138242) (GH-138449)Miss Islington (bot)2025-09-031-1/+48
* [3.13] gh-138204: Forbid expansion of a shared anonymous mmap on Linux (GH-13...Miss Islington (bot)2025-09-031-0/+9
* [3.13] gh-116946: Revert GC protocol for immutable empty heap types (GH-13832...Bénédikt Tran2025-09-013-102/+44
* [3.13] gh-116946: fully implement GC protocol for `zlib` objects (GH-138290) ...Bénédikt Tran2025-09-011-19/+61
* [3.13] gh-116946: fully implement GC protocol for `_hashlib` objects (GH-1382...Bénédikt Tran2025-09-011-23/+68
* [3.13] gh-116946: fully implement GC protocol for `lzma` objects (GH-138288) ...Bénédikt Tran2025-09-011-10/+17
* [3.13] gh-116946: fully implement GC protocol for `bz2` objects (GH-138266) (...Bénédikt Tran2025-09-011-11/+17
* [3.13] bpo-41839: Fix error checking in sched_get_priority_ functions (GH-223...Miss Islington (bot)2025-08-271-5/+7
* [3.13] gh-137986: Fix and improve the csv functions docstrings (GH-137987) (G...Serhiy Storchaka2025-08-242-48/+35
* [3.13] gh-87135: Hang non-main threads that attempt to acquire the GIL during...Gregory P. Smith2025-08-171-0/+29
* [3.13] gh-137583: Only lock the SSL context, not the SSL socket (GH-137588) (...Peter Bierma2025-08-122-17/+17
* [3.13] gh-137044: Support large limit values in getrlimit() and setrlimit() (...Miss Islington (bot)2025-08-072-45/+58
* [3.13] gh-132710: only use stable `_uuid.generate_time_safe()` to deduce MAC ...Bénédikt Tran2025-08-051-8/+32
* [3.13] gh-135839: Fix `module_traverse` and `module_clear` in subinterp modul...sobolevn2025-08-042-8/+4
* [3.13] gh-137273: Fix debug assertion failure in locale.setlocale() on Window...Miss Islington (bot)2025-08-011-0/+47
* [3.13] gh-134698: Hold a lock when the thread state is detached in ssl (GH-13...Gregory P. Smith2025-07-272-48/+66
* [3.13] gh-126662: naming consistency for `signal.ItimerError` (GH-126712) (#1...Miss Islington (bot)2025-07-271-1/+1
* [3.13] gh-136710: Fix bad indentation in `os.chdir` docstring (GH-136721)Zachary Ware2025-07-162-4/+4
* [3.13] gh-136549: Fix signature of threading.excepthook() (GH-136559) (GH-136...Miss Islington (bot)2025-07-121-1/+1
* [3.13] gh-136288: Fix error message in `_testcapi/vectorcall.c` (GH-136258) (...Miss Islington (bot)2025-07-041-4/+4
* [3.13] Fix comments for `heapq.siftup_max` (GH-135359) (#136233)Miss Islington (bot)2025-07-031-3/+3
* [3.13] gh-135607: remove null checking of weakref list in dealloc of extensio...Victor Stinner2025-07-0119-49/+39
* [3.13] gh-108765: fix comment about macro definitions in `_stat.c` post GH-10...Miss Islington (bot)2025-06-271-2/+2
* [3.13] gh-135839: Fix `module_traverse` and `module_clear` in `_interpchannel...sobolevn2025-06-251-4/+2
* [3.13] gh-135855: Raise TypeError When Passing Non-dict Object to `_interpret...Brian Schubert2025-06-241-12/+10
* [3.13] gh-135698: Fix Cross-interpreter Queue.full() With Negative/Default ma...Eric Snow2025-06-231-2/+5
* [3.13] gh-135641: Fix flaky `test_capi.test_lock_two_threads` test case (gh-1...Miss Islington (bot)2025-06-181-1/+4
* [3.13] gh-135321: Always raise a correct exception for BINSTRING argument > 0...Miss Islington (bot)2025-06-111-5/+4
* [3.13] gh-135326: Restore support of __index__ in random.getrandbits() (#135332)Serhiy Storchaka2025-06-102-8/+14
* [3.13] gh-134160: Use PyModuleDef.m_free in the example module xxlimited (GH-...Miss Islington (bot)2025-06-071-3/+8
* [3.13] gh-131884: Fix incorrect formatting in json.dumps() when using indent ...Serhiy Storchaka2025-06-051-5/+10
* [3.13] gh-135108: Fix utmp.h inclusion in posixmodule.c on NetBSD (GH-135109)...Miss Islington (bot)2025-06-041-3/+3
* [3.13] gh-127081: use `getlogin_r` if available (gh-132751) (#135098)Sam Gross2025-06-031-0/+18
* [3.13] gh-133489: Remove size restrictions on getrandbits() and randbytes() (...Serhiy Storchaka2025-06-022-16/+14
* [3.13] gh-134908: Protect `textiowrapper_iternext` with critical section (gh-...Sam Gross2025-06-021-1/+15