summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* [3.11] gh-99952: fix refcount issues in ctypes.Structure from_param() result ...Gregory P. Smith2023-01-262-0/+9
* [3.11] gh-101326: Fix regression when passing None to FutureIter.throw (GH-10...Shantanu2023-01-251-1/+6
* gh-100795: Don't call freeaddrinfo on failure. (GH-101252)Miss Islington (bot)2023-01-231-0/+4
* gh-82052: Don't send partial UTF-8 sequences to the Windows API (GH-101103)Miss Islington (bot)2023-01-171-1/+16
* gh-100320: Fix path calculations on Windows when python.exe is moved outside ...Steve Dower2023-01-161-18/+30
* [3.11] GH-100892: Fix race in clearing `threading.local` (GH-100922). (#100937)Kumar Aditya2023-01-112-19/+59
* GH-81061: Fix refcount issue when returning `None` from a `ctypes.py_object` ...Miss Islington (bot)2023-01-091-8/+7
* gh-100689: Revert "bpo-41798: pyexpat: Allocate the expat_CAPI on the heap me...Miss Islington (bot)2023-01-081-40/+27
* gh-100649: Update native_thread_id after fork (gh-100650)Miss Islington (bot)2023-01-011-0/+4
* [3.11] GH-100342: check for allocation failure in AC `*args` parsing (GH-1003...Kumar Aditya2022-12-281-1/+7
* [3.11] gh-64490: Fix bugs in argument clinic varargs processing (GH-32092) (#...colorfulappl2022-12-282-1/+370
* [3.11] gh-99110: Initialize frame->previous in init_frame to fix segmentation...Bill Fisher2022-12-241-0/+18
* [3.11] gh-76963: PEP3118 itemsize of an empty ctypes array should not be 0 (G...Miss Islington (bot)2022-12-231-8/+25
* gh-78878: Fix crash when creating an instance of `_ctypes.CField` (GH-14837)Miss Islington (bot)2022-12-212-10/+3
* [3.11] gh-99240: Reset pointer to NULL when the pointed memory is freed in ar...colorfulappl2022-12-211-0/+20
* [3.11] gh-99240: Fix double-free bug in Argument Clinic str_converter generat...colorfulappl2022-12-202-1/+150
* [3.11] gh-64490: Fix refcount error when arguments are packed to tuple in arg...colorfulappl2022-12-192-1/+103
* [3.11] gh-96002: Add functional test for Argument Clinic (GH-96178) (#100230)colorfulappl2022-12-173-0/+2870
* [3.11] gh-93453: Only emit deprecation warning in asyncio.get_event_loop when...Serhiy Storchaka2022-12-061-7/+5
* [3.11] gh-60203: Revert changes in cycle.__setstate__ (GH-99982) (#100016)Łukasz Langa2022-12-051-0/+1
* [3.11] bpo-40882: Fix a memory leak in SharedMemory on Windows (GH-20684) (#9...Luke Garland2022-12-052-1/+52
* [3.11] bpo-31718: Fix io.IncrementalNewlineDecoder SystemErrors and segfaults...Kumar Aditya2022-11-281-10/+20
* GH-95896: posixmodule.c: fix osdefs.h inclusion to not depend on compiler (GH...Miss Islington (bot)2022-11-261-11/+3
* bpo-38031: Fix a possible assertion failure in _io.FileIO() (GH-GH-5688)Miss Islington (bot)2022-11-251-1/+5
* GH-97001: Release GIL in termios extension (GH-99503)Miss Islington (bot)2022-11-221-12/+76
* [3.11] Revert "[3.11] gh-98724: Fix Py_CLEAR() macro side effects (#99100)" (...Victor Stinner2022-11-211-87/+0
* [3.11] gh-99337: Fix compile errors with gcc 12 on macOS (GH-99470) (#99638)Miss Islington (bot)2022-11-215-6/+49
* gh-99370: Calculate zip path from prefix when in a venv (GH-99371)Miss Islington (bot)2022-11-141-2/+1
* [3.11] gh-98930: improve the docstring of signal.strsignal (GH-99290) (#99449)Gregory P. Smith2022-11-132-6/+8
* gh-99275: Fix `SystemError` in `ctypes` during `__initsubclass__` (GH-99283)Miss Islington (bot)2022-11-131-1/+4
* gh-99204: Calculate base_executable by alternate names in POSIX venvs (GH-99206)Miss Islington (bot)2022-11-101-0/+19
* gh-98724: Fix Py_CLEAR() macro side effects (#99100) (#99288)Victor Stinner2022-11-091-0/+87
* gh-92119: ctypes: Print exception class name instead of its representation (G...Miss Islington (bot)2022-11-081-1/+4
* gh-96055: Update faulthandler to emit proper unexpect signal number (gh-99162)Miss Islington (bot)2022-11-071-4/+16
* gh-83004: Clean up refleak in _pickle initialisation (GH-98841)Miss Islington (bot)2022-11-061-7/+6
* gh-83004: Clean up refleak in _zoneinfo initialisation (GH-98842)Miss Islington (bot)2022-11-061-2/+3
* gh-83004: Clean up refleak in _io initialisation (GH-98840)Miss Islington (bot)2022-11-061-3/+3
* gh-94808: add tests covering `PySequence_{Set,Del}Slice` (GH-99123)Miss Islington (bot)2022-11-051-0/+33
* gh-94808: add tests covering `PyEval_GetFuncDesc` function (GH-98300)Miss Islington (bot)2022-11-051-0/+7
* gh-98740: Fix validation of conditional expressions in RE (GH-98764)Miss Islington (bot)2022-11-031-27/+29
* gh-98790: When DLLs directory is missing on Windows, assume executable_dir co...Steve Dower2022-11-021-7/+21
* GH-98897: fix memory leak if `math.dist` raises exception (GH-98898)Miss Islington (bot)2022-11-011-3/+3
* [3.11] gh-98793: Fix typecheck in `overlapped.c` (GH-98835) (#98889)Charlie Zhao2022-10-312-9/+9
* gh-98739: Update libexpat from 2.4.9 to 2.5.0 (GH-98742)Miss Islington (bot)2022-10-273-18/+35
* Fix readline.c compiler warning. (GH-98738)Miss Islington (bot)2022-10-261-1/+1
* gh-94808: cover `PyMapping_HasKeyString` and `PyMapping_HasKey` (GH-98486)Miss Islington (bot)2022-10-261-0/+36
* bpo-2716: add license for audioop module (GH-19972)Miss Islington (bot)2022-10-211-14/+30
* [3.11] gh-94808: Cover `PyFunction_GetCode`, `PyFunction_GetGlobals`,… (#98...Jelle Zijlstra2022-10-191-0/+40
* [3.11] gh-94808: Cover `PyEval_GetFuncName` (GH-98246). (#98283)Jelle Zijlstra2022-10-151-0/+7
* gh-98178: syslog() is not thread-safe on macOS (GH-98213)Miss Islington (bot)2022-10-131-0/+5