summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
...
* gh-104282: Fix null pointer dereference in `lzma._decode_filter_properties` (...Radislav Chugunov2024-01-171-1/+3
* gh-114096: Restore privileges in _winapi.CreateJunction after creating the ju...Steve Dower2024-01-161-7/+21
* Fix an incorrect comment in iobase_is_closed (GH-102952)Jonathon Reinhart2024-01-161-10/+9
* gh-114101: Correct PyErr_Format arguments in _testcapi module (#114102)AN Long2024-01-162-8/+8
* gh-78502: Add a trackfd parameter to mmap.mmap() (GH-25425)Zackery Spytz2024-01-161-6/+20
* gh-113666: Adding missing UF_ and SF_ flags to module 'stat' (#113667)Ronald Oussoren2024-01-151-3/+68
* gh-113868: Add a number of MAP_* flags from macOS to module mmap (#113869)Ronald Oussoren2024-01-121-0/+33
* gh-111877: Fixes stat() handling for inaccessible files on Windows (GH-113716)Steve Dower2024-01-121-6/+10
* gh-81489: Use Unicode APIs for mmap tagname on Windows (GH-14133)Zackery Spytz2024-01-111-19/+15
* gh-89811: Check for valid tp_version_tag in specializer (GH-113558)Peter Lazorchak2024-01-111-0/+29
* gh-77046: os.pipe() sets _O_NOINHERIT flag on fds (#113817)Victor Stinner2024-01-102-4/+4
* gh-111139: Optimize math.gcd(int, int) (#113887)Victor Stinner2024-01-101-5/+9
* gh-111789: Use PyDict_GetItemRef() in Modules/_zoneinfo.c (GH-112078)Serhiy Storchaka2024-01-101-14/+5
* gh-89850: Add default C implementations of persistent_id() and persistent_loa...Serhiy Storchaka2024-01-102-211/+151
* gh-70835: Clarify error message for CSV file opened with wrong newline (GH-11...Serhiy Storchaka2024-01-101-1/+2
* gh-112182: Replace StopIteration with RuntimeError for future (#113220)Jamie Phan2024-01-101-5/+20
* gh-66060: Use actual class name in _io type's __repr__ (#30824)AN Long2024-01-093-20/+29
* gh-113848: Use PyErr_GivenExceptionMatches() for check for CancelledError (GH...Serhiy Storchaka2024-01-091-15/+1
* gh-87868: Sort and remove duplicates in getenvironment() (GH-102731)AN Long2024-01-091-4/+155
* gh-113791: Expose CLOCK_MONOTONIC_RAW_APPROX and CLOCK_UPTIME_RAW_APROX on ma...Ronald Oussoren2024-01-081-6/+10
* gh-113755: Fully adapt gcmodule.c to Argument Clinic (#113756)Erlend E. Aasland2024-01-082-27/+174
* gh-113787: Fix refleaks in test_capi (gh-113816)neonene2024-01-082-3/+2
* gh-110721: Remove unused code from suggestions.c after moving PyErr_Display t...Pablo Galindo Salgado2024-01-083-0/+105
* gh-80109: Fix io.TextIOWrapper dropping the internal buffer during write() (G...Zackery Spytz2024-01-081-4/+8
* gh-89532: Remove LibreSSL workarounds (#28728)Rami2024-01-062-6326/+3
* gh-113750: Fix object resurrection in free-threaded builds (gh-113751)Sam Gross2024-01-061-3/+1
* gh-113688: Split up gcmodule.c (gh-113715)Sam Gross2024-01-051-1959/+32
* gh-111178: Avoid calling functions from incompatible pointer types in _tkinte...Christopher Chavez2024-01-021-18/+26
* GH-113633: Use module state structure for _testcapi. (GH-113634)Neil Schemenauer2024-01-011-51/+64
* gh-113536: Expose `os.waitid` on macOS (#113542)Ronald Oussoren2024-01-012-10/+10
* gh-62260: Fix ctypes.Structure subclassing with multiple layers (GH-13374)Jeffrey Kintscher2024-01-012-6/+6
* gh-103092: Make ``pyexpat`` module importable in sub-interpreters (#113555)Kirill Podoprigora2023-12-291-3/+1
* bpo-11102: Make configure enable major(), makedev(), and minor() on HP-UX (GH...Zackery Spytz2023-12-281-4/+5
* gh-103092: Make `_elementtree` module importable in sub-interpreters (#113434)Kirill Podoprigora2023-12-281-3/+1
* gh-113332: Simplify calls to SSL_(CTX_)set_verify in _ssl.c (#113333)David Benjamin2023-12-261-7/+2
* gh-113191: Add support of os.fchmod() on Windows (GH-113192)Serhiy Storchaka2023-12-242-27/+59
* gh-111784: Fix two segfaults in the elementtree module (GH-113405)Kirill Podoprigora2023-12-241-2/+14
* gh-112205: Support docstring for `@getter` (#113160)Donghee Na2023-12-204-49/+204
* gh-113119: Fix the macOS framework installer build (#113268)Gregory P. Smith2023-12-191-1/+10
* gh-113039: Avoid using leading dots in the include path for frozen getpath.py...Itamar Oren2023-12-181-1/+1
* gh-113117: Support posix_spawn in subprocess.Popen with close_fds=True (#113118)Jakub Kulík2023-12-171-0/+24
* gh-113149: Improve error message when JSON has trailing comma (GH-113227)Carson Radtke2023-12-171-0/+14
* gh-113119 fix environment handling in subprocess.Popen when posix_spawn is us...Jakub Kulík2023-12-171-6/+10
* gh-113202: Add a strict option to itertools.batched() (gh-113203)Raymond Hettinger2023-12-162-21/+40
* gh-111964: Add _PyRWMutex a "readers-writer" lock (gh-112859)Sam Gross2023-12-161-0/+99
* gh-113172: Fix compiler warnings in Modules/_xxinterpqueuesmodule.c (GH-113173)Serhiy Storchaka2023-12-151-1/+3
* bpo-36796: Clean the error handling in _testcapimodule.c (GH-13085)Zackery Spytz2023-12-142-14/+50
* gh-86179: Avoid making case-only changes when calculating realpath() during i...Steve Dower2023-12-141-2/+11
* gh-59616: Support os.chmod(follow_symlinks=True) and os.lchmod() on Windows (...Serhiy Storchaka2023-12-142-23/+71
* gh-112205: Update textio module to use `@getter` as possible. (gh-113095)Donghee Na2023-12-142-49/+125