summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
...
* [3.11] gh-103142: Upgrade binary builds and CI to OpenSSL 1.1.1u (GH-105174) ...Gregory P. Smith2023-06-012-2/+167
* [3.11] gh-104372: Cleanup _posixsubprocess make_inheritable for async signal ...Gregory P. Smith2023-05-241-34/+91
* [3.11] Add IPv6 into to the docstring for socket.getsockname (GH-102961) (#10...Miss Islington (bot)2023-05-221-1/+2
* [3.11] gh-104698: Fix reference leak in mmapmodule.c (GH-104700) (#104710)Miss Islington (bot)2023-05-211-3/+19
* [3.11] gh-101857: Allow xattr detection on musl libc (GH-101858) (#101894)Miss Islington (bot)2023-05-211-1/+2
* [3.11] gh-103987: fix several crashes in mmap module (GH-103990) (#104677)Miss Islington (bot)2023-05-201-2/+13
* [3.11] GH-102818: Do not call PyTraceBack_Here in sys.settrace trampoline (GH...Mark Shannon2023-05-191-0/+28
* [3.11] gh-104645: fix error handling in marshal tests (GH-104646) (#104663)Miss Islington (bot)2023-05-191-18/+14
* [3.11] GH-104308: socket.getnameinfo should release the GIL (GH-104307) (#104...Miss Islington (bot)2023-05-081-0/+2
* [3.11] gh-104265 Disallow instantiation of `_csv.Reader` and `_csv.Writer` (G...Miss Islington (bot)2023-05-081-2/+2
* [3.11] gh-100370: fix OverflowError in sqlite3.Connection.blobopen for 32-bit...Erlend E. Aasland2023-05-082-9/+26
* [3.11] gh-104106: Add gcc fallback of mkfifoat/mknodat for macOS (gh-104129) ...Dong-hee Na2023-05-051-0/+8
* gh-103242: Migrate SSLContext.set_ecdh_curve not to use deprecated APIs (GH-1...Miss Islington (bot)2023-04-081-3/+8
* gh-103256: Fix hmac algorithm to support fallback implementation (gh-103286)Miss Islington (bot)2023-04-071-1/+1
* [3.11] GH-95494: Fix transport EOF handling in OpenSSL 3.0 (GH-95495) (#103006)Miss Islington (bot)2023-03-271-4/+10
* [3.11] gh-102281: Fix potential nullptr dereference + use of uninitia… (#10...Max Bachmann2023-03-251-1/+4
* [3.11] gh-102027: Fix macro name (GH-102124) (#102916)Miss Islington (bot)2023-03-241-1/+1
* [3.11] gh-96931: Fix incorrect results in ssl.SSLSocket.shared_ciphers (GH-96...Miss Islington (bot)2023-03-241-8/+28
* GH-100989: remove annotation from docstring (GH-102991)Miss Islington (bot)2023-03-241-2/+2
* GH-100989: Revert Improve the accuracy of collections.deque docstrings (GH-10...Miss Islington (bot)2023-03-241-24/+13
* gh-100989: Improve the accuracy of collections.deque docstrings (GH-100990)Miss Islington (bot)2023-03-221-13/+24
* [3.11] gh-102493: backport unit test for PyErr_SetObject (#102602)Irit Katriel2023-03-111-0/+15
* GH-102397: Fix segfault from race condition in signal handling (GH-102399)Miss Islington (bot)2023-03-081-0/+4
* gh-102179: Fix `os.dup2` error reporting for negative fds (GH-102180)Miss Islington (bot)2023-03-041-5/+0
* [3.11] Add missing 'is' to `cmath.log()` docstring (GH-102049) (#102279)Mark Dickinson2023-02-262-4/+4
* [3.11] gh-101656: Fix "conversion from Py_ssize_t to int" warning in `_testca...Nikita Sobolev2023-02-081-3/+3
* [3.11] gh-101072: support default and kw default in PyEval_EvalCodeEx for 3.1...Łukasz Langa2023-02-071-0/+139
* gh-101543: Ensure Windows registry path is only used when stdlib can't be fou...Miss Islington (bot)2023-02-061-19/+12
* gh-101372: Fix unicodedata.is_normalized to properly handle the UCD 3… (gh-...Miss Islington (bot)2023-02-061-1/+1
* [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