summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* GH-103092: isolate `_ssl` (#104725)Kumar Aditya2023-05-223-14/+21
* gh-98836: Extend PyUnicode_FromFormat() (GH-98838)Serhiy Storchaka2023-05-214-29/+52
* gh-103857: Document utcnow and utcfromtimestamp deprecations in What's New (#...Hugo van Kemenade2023-05-211-1/+1
* GH-101291: Add low level, unstable API for pylong (GH-101685)Mark Shannon2023-05-211-0/+13
* gh-103295: expose API for writing perf map files (#103546)gsallam2023-05-211-0/+27
* gh-104469: Convert _testcapi/exceptions to use AC (gh-104502)Dong-hee Na2023-05-212-97/+531
* gh-104698: Fix reference leak in mmapmodule.c (#104700)Kirill Podoprigora2023-05-211-3/+19
* gh-104372: Use non-Raw malloc for c_fds_to_keep in _posixsubprocess (#104697)Gregory P. Smith2023-05-201-2/+2
* gh-103987: fix several crashes in mmap module (#103990)Prince Roshan2023-05-201-2/+13
* gh-94906: Support multiple steps in math.nextafter (#103881)Matthias Görgens2023-05-192-12/+152
* gh-103839: Allow building Tkinter against Tcl 8.7 without external libtommath...Christopher Chavez2023-05-191-0/+3
* gh-104645: fix error handling in marshal tests (#104646)Irit Katriel2023-05-191-18/+14
* GH-102818: Do not call `PyTraceBack_Here` in sys.settrace trampoline. (GH-10...Mark Shannon2023-05-191-0/+28
* GH-103545: Add macOS specific constants for ``os.setpriority`` to ``os`` (#10...Ronald Oussoren2023-05-191-0/+12
* gh-104549: Set __module__ on TypeAliasType (#104550)Jelle Zijlstra2023-05-181-1/+4
* gh-104615: don't make unsafe swaps in apply_static_swaps (#104620)Carl Meyer2023-05-182-12/+18
* GH-96803: Document and test new unstable internal frame API functions (GH-104...Mark Shannon2023-05-181-0/+36
* 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-161-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-163-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