summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* gh-87804: Fix error handling and style in `_pystatvfs_fromstructstatfs` (#115...Nikita Sobolev2024-02-121-31/+33
* gh-49766: Make date-datetime comparison more symmetric and flexible (GH-114760)Serhiy Storchaka2024-02-111-26/+10
* gh-85984: Add _POSIX_VDISABLE from unistd.h to termios module. (#114985)Soumendra Ganguly2024-02-111-3/+4
* gh-114670: Fix `_testbuffer` module initialization (#114672)Nikita Sobolev2024-02-101-53/+74
* gh-114894: add array.array.clear() method (#114919)Mike Zimin2024-02-102-1/+35
* GH-87804: Fix counter overflow in statvfs on macOS (#99570)Ronald Oussoren2024-02-101-0/+101
* gh-110481: Implement inter-thread queue for biased reference counting (#114824)Sam Gross2024-02-091-0/+4
* gh-115059: Flush the underlying write buffer in io.BufferedRandom.read1() (GH...Serhiy Storchaka2024-02-091-0/+10
* gh-115136: Fix possible NULL deref in getpath_joinpath() (GH-115137)Artem Chernyshev2024-02-081-0/+4
* When the Py_CompileStringExFlags fuzzer encounters a SystemError, abort (#115...Alex Gaynor2024-02-071-2/+9
* gh-112066: Use `PyDict_SetDefaultRef` in place of `PyDict_SetDefault`. (#112211)Sam Gross2024-02-073-5/+5
* GH-108362: Revert "GH-108362: Incremental GC implementation (GH-108038)" (#11...Mark Shannon2024-02-071-9/+14
* gh-112075: Add critical sections for most dict APIs (#114508)Dino Viehland2024-02-061-12/+15
* gh-115035: Mark ThreadHandles as non-joinable earlier after forking (#115042)Sam Gross2024-02-061-17/+36
* gh-112529: Stop the world around gc.get_referents (#114823)Sam Gross2024-02-061-13/+28
* gh-112066: Add `PyDict_SetDefaultRef` function. (#112123)Sam Gross2024-02-061-0/+26
* gh-91602: Add iterdump() support for filtering database objects (#114501)Mariusz Felisiak2024-02-062-11/+69
* gh-82626: Emit a warning when bool is used as a file descriptor (GH-111275)Serhiy Storchaka2024-02-053-0/+21
* gh-115015: Argument Clinic: fix generated code for METH_METHOD methods withou...Erlend E. Aasland2024-02-0525-65/+124
* GH-108362: Incremental GC implementation (GH-108038)Mark Shannon2024-02-051-14/+9
* gh-115026: Argument Clinic: handle PyBuffer_FillInfo errors in generated code...Nikita Sobolev2024-02-053-9/+21
* gh-114685: PyBuffer_FillInfo() now raises on PyBUF_{READ,WRITE} (GH-114802)Nikita Sobolev2024-02-041-0/+21
* gh-111417: Remove unused code block in math.trunc() and round() (GH-111454)Jason Zhang2024-02-031-5/+0
* gh-114329: Add `PyList_GetItemRef` function (GH-114504)Sam Gross2024-02-021-0/+13
* GH-113710: Add a "globals to constants" pass (GH-114592)Mark Shannon2024-02-021-2/+2
* gh-112529: Remove PyGC_Head from object pre-header in free-threaded build (#1...Sam Gross2024-02-011-1/+11
* 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