summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* gh-114685: Check flags in PyObject_GetBuffer() (GH-114707)Serhiy Storchaka2024-01-311-2/+4
* gh-110190: Fix ctypes structs with array on Windows ARM64 (GH-114753)Diego Russo2024-01-301-1/+1
* gh-112919: Speed-up datetime, date and time.replace() (GH-112921)Eugene Toder2024-01-302-96/+426
* gh-113732: Fix support of QUOTE_NOTNULL and QUOTE_STRINGS in csv.reader (GH-1...Serhiy Storchaka2024-01-301-17/+29
* gh-114678: Fix incorrect deprecation warning for 'N' specifier in Decimal for...Serhiy Storchaka2024-01-291-6/+8
* gh-85984: Add POSIX pseudo-terminal functions. (GH-102413)Soumendra Ganguly2024-01-292-1/+314
* gh-91325: Skip Stable ABI checks with Py_TRACE_REFS special build (GH-92046)Petr Viktorin2024-01-291-0/+9
* gh-112050: Adapt collections.deque to Argument Clinic (#113963)mpage2024-01-292-152/+678
* Use Unicode unconditionally for _winapi.CreateFile (GH-114611)Steve Dower2024-01-262-13/+17
* gh-114569: Use PyMem_* APIs for most non-PyObject uses (#114574)Erlend E. Aasland2024-01-264-19/+22
* gh-114312: Fix rare event counter tests on aarch64 (GH-114554)Michael Droettboom2024-01-261-5/+5
* gh-114315: Make `threading.Lock` a real class, not a factory function (#114479)Nikita Sobolev2024-01-251-4/+29
* gh-114312: Collect stats for unlikely events (GH-114493)Michael Droettboom2024-01-251-0/+16
* gh-114492: Initialize struct termios before calling tcgetattr() (GH-114495)Serhiy Storchaka2024-01-231-0/+2
* gh-113884: Make queue.SimpleQueue thread-safe when the GIL is disabled (#114161)mpage2024-01-232-90/+136
* gh-114321: Expose more constants in the fcntl module (GH-114322)Serhiy Storchaka2024-01-221-0/+53
* gh-103092: Ensure `_ctypes.c` static types are accessed via global state (#11...neonene2024-01-226-106/+172
* gh-113796: Add more validation checks in the csv.Dialect constructor (GH-113797)Serhiy Storchaka2024-01-221-0/+39
* gh-114414: Assert PyType_GetModuleByDef result in _threadmodule (#114415)Nikita Sobolev2024-01-221-0/+3
* gh-113884: Refactor `queue.SimpleQueue` to use a ring buffer to store items (...mpage2024-01-191-40/+169
* gh-114286: Fix `maybe-uninitialized` warning in `Modules/_io/fileio.c` (GH-11...Nikita Sobolev2024-01-191-1/+1
* gh-114123: Migrate docstring from _csv to csv (#114124)Skip Montanaro2024-01-181-70/+1
* gh-103092: Convert some `_ctypes` metatypes to heap types (GH-113620)AN Long2024-01-182-281/+141
* gh-104522: Fix OSError raised when run a subprocess (#114195)Serhiy Storchaka2024-01-181-10/+11
* 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