summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* [3.11] gh-109786: Fix leaks and crash when re-enter itertools.pairwise.__next...Miss Islington (bot)2023-12-041-2/+11
* [3.11] gh-112678: Declare `Tkapp_CallDeallocArgs()` as `static` (GH-112679) (...Miss Islington (bot)2023-12-041-1/+1
* [3.11] bpo-35191: Fix unexpected integer truncation in socket.setblocking() (...Alexey Izbyshev2023-12-011-3/+5
* [3.11] gh-112105: Make completer delims work on libedit (gh-112106) (gh-112488)Miss Islington (bot)2023-11-281-0/+16
* [3.11] bpo-41422: Visit the Pickler's and Unpickler's memo in tp_traverse (GH...Serhiy Storchaka2023-11-271-0/+14
* [3.11] gh-111942: Fix crashes in TextIOWrapper.reconfigure() (GH-111976) (GH-...Miss Islington (bot)2023-11-151-4/+46
* [3.11] Fix undefined behaviour in datetime.time.fromisoformat() (GH-111982) (...Miss Islington (bot)2023-11-121-1/+1
* [3.11] gh-111841: Fix os.putenv() and os.unsetenv() with embedded NUL on Wind...Miss Islington (bot)2023-11-111-1/+6
* [3.11] gh-111251: Fix error checking in _blake2 module init (GH-111252) (#111...Miss Islington (bot)2023-11-101-8/+17
* [3.11] GH-111804: Drop posix.fallocate() under WASI (GH-111869) (GH-111920)Brett Cannon2023-11-092-5/+8
* [3.11] gh-101180: Fix a bug where iso2022_jp_3 and iso2022_jp_2004 co… (gh-...Donghee Na2023-11-061-3/+6
* [3.11] gh-111174: Fix crash in getbuffer() called repeatedly for empty BytesI...Miss Islington (bot)2023-10-251-3/+4
* gh-110913: Fix WindowsConsoleIO chunking of UTF-8 text (GH-111007)Miss Islington (bot)2023-10-201-16/+20
* [3.11] [3.12] bpo-42663: Fix parsing TZ strings in zoneinfo module (GH-23825)...Serhiy Storchaka2023-10-151-219/+152
* [3.11] gh-109747: Improve errors for unsupported look-behind patterns (GH-109...Miss Islington (bot)2023-10-142-9/+7
* [3.11] gh-110590: Fix a bug where _sre.compile would overwrite exceptions (GH...Miss Islington (bot)2023-10-101-0/+3
* [3.11] gh-78469: Declare missing sethostname for Solaris 10 (GH-109447) (#110...Miss Islington (bot)2023-10-101-2/+3
* [3.11] gh-109191: Fix build with newer editline (gh-110239) (#110575)Bo Anderson2023-10-091-1/+1
* [3.11] gh-110365: Fix error overwrite in `termios.tcsetattr` (GH-110366) (#11...Miss Islington (bot)2023-10-051-13/+26
* [3.11] gh-108851: Fix support.get_recursion_available() for USE_STACKCHECK (#...Victor Stinner2023-09-291-2/+8
* [3.11] gh-110052: Fix faulthandler for freed tstate (#110069) (#110072)Victor Stinner2023-09-291-2/+1
* [3.11] gh-109098: Fuzz re module instead of internal sre (GH-109911) (GH-109933)Miss Islington (bot)2023-09-271-20/+16
* [3.11] gh-109593: Fix reentrancy issue in multiprocessing resource_tracker (G...Miss Islington (bot)2023-09-261-0/+14
* [3.11] gh-109631: Allow interruption of short repeated regex matches (GH-1098...Miss Islington (bot)2023-09-262-2/+5
* [3.11] gh-109795: `_thread.start_new_thread`: allocate thread bootstate usin...Victor Stinner2023-09-251-3/+6
* [3.11] gh-109613: _pystat_fromstructstat() checks for exceptions (#109618) (#...Victor Stinner2023-09-211-46/+67
* [3.11] gh-108987: Fix _thread.start_new_thread() race condition (#109135) (#1...Victor Stinner2023-09-111-16/+31
* [3.11] gh-104690: thread_run() checks for tstate dangling pointer (#109056) (...Victor Stinner2023-09-081-2/+5
* [3.11] gh-104372: Drop the GIL around the vfork() call. (#104782) (#104958)Gregory P. Smith2023-09-011-2/+19
* [3.11] gh-107801: Improve the accuracy of io.IOBase.seek docs (#108268) (#108...Erlend E. Aasland2023-08-291-7/+14
* [3.11] gh-107801: Document io.TextIOWrapper.tell (#108265) (#108548)Erlend E. Aasland2023-08-272-3/+12
* [3.11] gh-107913: Fix possible losses of OSError error codes (GH-107930) (GH-...Serhiy Storchaka2023-08-2714-75/+122
* [3.11] Revert "gh-46376: Return existing pointer when possible in ctypes (GH-...Łukasz Langa2023-08-241-29/+0
* [3.11] Trim trailing whitespace and test on CI (GH-104275) (#108215)Hugo van Kemenade2023-08-2216-109/+109
* [3.11] gh-102507 Remove invisible pagebreak characters (GH-102531) (#108266)Miss Islington (bot)2023-08-221-3/+0
* [3.11] gh-107801: Improve the accuracy of io.TextIOWrapper.seek docs (#107933...Erlend E. Aasland2023-08-222-5/+39
* [3.11] gh-107801: Improve the accuracy of os.lseek docs (#107935) (#108137)Erlend E. Aasland2023-08-192-8/+22
* [3.11] gh-100061: Proper fix of the bug in the matching of possessive quantif...Serhiy Storchaka2023-08-161-0/+4
* [3.11] gh-106242: Fix path truncation in os.path.normpath (GH-106816) (#107982)Steve Dower2023-08-151-1/+3
* [3.11] gh-106844: Fix issues in _winapi.LCMapStringEx (GH-107832) (GH-107875)Serhiy Storchaka2023-08-121-12/+14
* [3.11] gh-107735: Add C API tests for PySys_GetObject() and PySys_SetObject()...Serhiy Storchaka2023-08-071-0/+41
* [3.11] gh-107077: Raise SSLCertVerificationError even if the error is set via...Miss Islington (bot)2023-08-031-0/+4
* [3.11] gh-106263: Fix segfault in `signaldict_repr` in `_decimal` module (#...Charlie Zhao2023-07-311-3/+27
* [3.11] gh-46376: Return existing pointer when possible in ctypes (GH-107131) ...Łukasz Langa2023-07-311-0/+29
* [3.11] gh-106881: Check for linux/limits.h before including it (#107397) (#10...justdan62023-07-281-1/+1
* [3.11] gh-104432: Use `memcpy()` to avoid misaligned loads (GH-104433) (#107356)Miss Islington (bot)2023-07-282-7/+25
* [3.11] gh-106350: Tkinter: do not ignore return value of `mp_init()` (GH-1063...Miss Islington (bot)2023-07-261-2/+3
* [3.11] gh-99612: Fix PyUnicode_DecodeUTF8Stateful() for ASCII-only data (GH-9...Serhiy Storchaka2023-07-251-1/+36
* [3.11] gh-86493: Fix possible leaks in some modules initialization (GH-106768...Serhiy Storchaka2023-07-198-43/+34
* [3.11] gh-86493: Fix possible leaks in modules initialization: _curses_panel,...Serhiy Storchaka2023-07-184-84/+43