summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* [3.13] gh-140042: Removing unsafe call to sqlite3_shutdown (GH-141793) (#141812)Prithviraj Chaudhuri2025-11-301-1/+0
* [3.13] gh-141801: Use accessors for ASN1_STRING fields in libssl (GH-141802) ...Miss Islington (bot)2025-11-221-8/+10
* [3.13] gh-141659: Fix bad file descriptor error in subprocess on AIX (GH-1416...Hugo van Kemenade2025-11-211-0/+6
* [3.13] gh-137109: refactor warning about threads when forking (GH-141438) (GH...Miss Islington (bot)2025-11-171-43/+60
* [3.13] gh-124111: Fix TCL 9 thread detection (GH-141483)Miss Islington (bot)2025-11-121-0/+4
* [3.13] gh-141311: Avoid assertion in BytesIO.readinto() (GH-141333) (GH-141478)Cody Maloney2025-11-121-4/+14
* [3.13] gh-132657: add regression test for `PySet_Contains` with unhashable ty...Miss Islington (bot)2025-11-121-0/+47
* [3.13] gh-141314: Fix TextIOWrapper.tell() assertion failure with standalone ...Mohsin Mehmood2025-11-121-1/+1
* [3.13] gh-100218: correctly set `errno` when `socket.if_{nametoindex,indexton...Bénédikt Tran2025-11-091-2/+3
* [3.13] gh-140615: Update docstrings in the fcntl module (GH-140619) (GH-14123...Serhiy Storchaka2025-11-082-90/+102
* [3.13] Fix a compiler warning in _randommodule.c (GH-141058) (#141064)Miss Islington (bot)2025-11-051-1/+1
* [3.13] gh-140979: Fix off-by-one error in the RE code validator (GH-140984) (...Miss Islington (bot)2025-11-041-1/+1
* [3.13] gh-90949: add Expat API to prevent XML deadly allocations (CVE-2025-59...Sebastian Pipping2025-11-023-28/+316
* [3.13] gh-140607: Validate returned byte count in RawIOBase.read (GH-140611) ...Cody Maloney2025-10-291-3/+10
* [3.13] GH-140590: Fix setstate for functools.partial C-module (GH-140671) (#1...Miss Islington (bot)2025-10-281-1/+2
* [3.13] gh-140634: Fix a reference counting bug in os.sched_param.__reduce__()...Miss Islington (bot)2025-10-271-1/+1
* [3.13] gh-140593: Fix a memory leak in function `my_ElementDeclHandler` of `p...Sebastian Pipping2025-10-261-1/+1
* [3.13] Remove unreachable break statements in _ctypes_test.c (GH-140585) (#14...Miss Islington (bot)2025-10-251-3/+0
* [3.13] gh-140474: Fix memory leak in `array.array` (GH-140478) (GH-140499)Miss Islington (bot)2025-10-231-0/+3
* [3.13] gh-140306: Fix memory leaks in cross-interpreter data handling (GH-140...Serhiy Storchaka2025-10-202-2/+2
* [3.13] gh-140272: Fix memory leak in _gdbm.gdbm.clear() (GH-140274) (GH-140289)Serhiy Storchaka2025-10-181-0/+2
* [3.13] gh-101828: Fix `jisx0213` codecs removing null characters (gh-139340) ...Stan Ulbrych2025-10-142-6/+14
* [3.13] gh-102431: Clarify constraints on operands of Decimal logical operatio...Sergey B Kirpichev2025-10-141-8/+80
* [3.13] gh-139748: Fix socket.if_nametoindex() Argument Clinic (#139815)Victor Stinner2025-10-082-4/+7
* [3.13] gh-139748: fix leaks in AC error paths when using unicode FS-b… (#13...Kumar Aditya2025-10-086-37/+28
* [3.13] gh-137920: Fix semantically relevant typo in `curses.window.attron` (G...Stan Ulbrych2025-10-072-4/+4
* [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