summaryrefslogtreecommitdiff
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* gh-104372: Cleanup _posixsubprocess `make_inheritable` for async signal safet...Gregory P. Smith2023-05-171-34/+91
* GH-101520: Move tracemalloc functionality into core, leaving interface in Mod...Mark Shannon2023-05-171-1541/+12
* gh-104469: Update README.txt for _testcapi (gh-104529)Dong-hee Na2023-05-171-0/+7
* GH-103092: isolate `_elementtree` (#104561)Kumar Aditya2023-05-171-43/+42
* GH-103092: isolate `pyexpat` (#104506)Kumar Aditya2023-05-161-8/+21
* GH-104510: Fix refleaks in `_io` base types (#104516)Kumar Aditya2023-05-163-26/+6
* gh-103763: Implement PEP 695 (#103764)Jelle Zijlstra2023-05-153-1/+29
* gh-104469: Convert _testcapi/watchers.c to use Argument Clinic (#104503)Nikita Sobolev2023-05-152-43/+259
* gh-104341: Adjust tstate_must_exit() to Respect Interpreter Finalization (gh-...Eric Snow2023-05-154-4/+5
* gh-101819: Fix _io clinic input for unused base class method stubs (#104418)Erlend E. Aasland2023-05-156-109/+168
* gh-101819: Isolate `_io` (#101948)Erlend E. Aasland2023-05-159-346/+198
* gh-104469 Convert _testcapi/float.c to use AC (gh-104470)Dong-hee Na2023-05-152-19/+123
* gh-104456: Fix ref leak in _ctypes.COMError (#104457)Kirill Podoprigora2023-05-141-1/+9
* gh-103857: Update deprecation stacktrace to point to calling line (#104431)Hugo van Kemenade2023-05-121-2/+2
* gh-93649: Split gc- and allocation tests from _testcapimodule.c (GH-104403)Jurica Bradarić2023-05-124-327/+349
* gh-101819: Prepare _io._IOBase for module state (#104386)Erlend E. Aasland2023-05-124-11/+21
* gh-87526: Remove dead initialization from _zoneinfo parse_abbr() (#24700)Alex Henrie2023-05-121-1/+1
* gh-99108: Refresh HACL* from upstream (#104401)Jonathan Protzenko2023-05-112-2/+2
* gh-101819: Fix inverted debug preprocessor check in winconsoleio.c (#104388)Erlend E. Aasland2023-05-111-1/+1
* gh-101819: Adapt _io.IOBase.seek and _io.IOBase.truncate to Argument Clinic (...Erlend E. Aasland2023-05-112-22/+135
* gh-101819: Adapt _io._Buffered* methods to Argument Clinic (#104367)Erlend E. Aasland2023-05-112-56/+328
* gh-101819: Refactor `_io` futher in preparation for module isolation (#104369)Erlend E. Aasland2023-05-115-116/+268
* gh-101819: Adapt _io.TextIOBase methods to Argument Clinic (#104383)Erlend E. Aasland2023-05-112-40/+233
* gh-103538: Remove unused TK_AQUA code (GH-103539)Christopher Chavez2023-05-102-64/+0
* gh-104263: Rely on Py_NAN and introduce Py_INFINITY (GH-104202)Sebastian Berg2023-05-102-90/+10
* gh-101819: Adapt _io._BufferedIOBase_Type methods to Argument Clinic (#104355)Erlend E. Aasland2023-05-102-44/+236
* gh-101819: Clean up _io windows console io after gh-104197 (#104354)Erlend E. Aasland2023-05-103-3/+3
* gh-101819: Harden _io init (#104352)Erlend E. Aasland2023-05-101-3/+4
* gh-101819: Refactor _io in preparation for module isolation (#104334)Erlend E. Aasland2023-05-093-42/+80
* gh-97933: (PEP 709) inline list/dict/set comprehensions (#101441)Carl Meyer2023-05-091-0/+2
* gh-104240: return code unit metadata from codegen (#104300)Irit Katriel2023-05-091-1/+1
* gh-104276: Make `_struct.unpack_iterator` type use type flag instead of custo...chgnrdv2023-05-091-7/+1
* gh-104180: Read SOCKS proxies from macOS System Configuration (#104181)samschott2023-05-091-0/+5
* GH-104308: socket.getnameinfo should release the GIL (#104307)Nathaniel J. Smith2023-05-081-0/+2
* gh-99108: fix typo in Modules/Setup (#104293)Jonathan Protzenko2023-05-081-1/+1
* Trim trailing whitespace and test on CI (#104275)Hugo van Kemenade2023-05-087-9/+9
* gh-99108: Replace SHA3 implementation HACL* version (#103597)Jonathan Protzenko2023-05-0716-414/+1184
* gh-104265 Disallow instantiation of `_csv.Reader` and `_csv.Writer` (#104266)chgnrdv2023-05-071-2/+2
* gh-104240: make _PyCompile_CodeGen support different compilation modes (#104241)Irit Katriel2023-05-072-12/+25
* gh-101819: Port _io.PyBytesIOBuffer_Type to heap type (#104264)Erlend E. Aasland2023-05-073-50/+29
* gh-100370: fix OverflowError in sqlite3.Connection.blobopen for 32-bit builds...Erlend E. Aasland2023-05-072-9/+26
* gh-101819: Adapt _io.PyWindowsConsoleIO_Type to heap type (#104197)Erlend E. Aasland2023-05-073-69/+51
* gh-101819: Port _io.PyIncrementalNewlineDecoder_Type to heap type (#104249)Erlend E. Aasland2023-05-073-47/+42
* gh-97696: Use `PyObject_CallMethodNoArgs` and inline is_loop_running check in...Itamar Ostricher2023-05-071-18/+5
* gh-99113: Add a check for Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104206)Eric Snow2023-05-061-1/+59
* gh-101819: Remove unused 'locale_module' from _io state (#104246)Erlend E. Aasland2023-05-062-5/+0
* gh-101819: Prepare to modernize the _io extension (#104178)Victor Stinner2023-05-069-37/+92
* gh-97696: Remove redundant #include (#104216)Jacob Bower2023-05-051-1/+0
* gh-99113: Add PyInterpreterConfig.own_gil (gh-104204)Eric Snow2023-05-052-2/+17
* gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)Eric Snow2023-05-0586-3/+125