summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* gh-116520: Fix error handling in `os_get_terminal_size_impl` in `posixmodule`...Nikita Sobolev2024-03-091-6/+17
* gh-116447: Fix possible UB in `arraymodule` and `getargs` (#116459)Nikita Sobolev2024-03-081-1/+1
* gh-116303: Explicitly check for the _testsinglephase module in configure.ac (...Erlend E. Aasland2024-03-071-1/+1
* gh-116417: Add _testlimitedcapi C extension (#116419)Victor Stinner2024-03-079-53/+96
* gh-116437: Use new C API PyDict_Pop() to simplify the code (GH-116438)Serhiy Storchaka2024-03-076-53/+45
* gh-116448: Handle errors correctly in `os_waitid_impl` in `posixmodule` (#116...Nikita Sobolev2024-03-071-9/+19
* gh-116386: Fix format string "%ld" warning in `_xxinterpqueuesmodule` (#116387)Nikita Sobolev2024-03-071-1/+1
* gh-114099 - Add iOS testbed, plus Makefile target to invoke it. (gh-115930)Russell Keith-Magee2024-03-071-4/+7
* gh-114271: Make `_thread.lock` thread-safe in free-threaded builds (#116433)mpage2024-03-061-2/+2
* gh-116404: Handle errors correctly in `wait_helper` in `posixmodule` (#116405)Nikita Sobolev2024-03-061-26/+29
* gh-76785: Use PRId64 to Fix a Compiler Warning on Windows (gh-116369)Eric Snow2024-03-051-2/+2
* gh-76785: Minor Improvements to "interpreters" Module (gh-116328)Eric Snow2024-03-053-68/+215
* gh-115490: Make the interpreter.channels and interpreter.queues Modules Handl...Eric Snow2024-03-042-12/+19
* gh-76785: Simplify Channels XID Types (gh-116318)Eric Snow2024-03-041-78/+49
* gh-116116: Backport blake2 change to fix building with clang-cl on windows-i6...Yuriy Chernyshov2024-03-042-2/+2
* Consistently spell out *predicate* instead of *pred*. (gh-116308)Raymond Hettinger2024-03-041-3/+3
* gh-108562: Fix compiler warnings for libmpdec (#114751)Sergey B Kirpichev2024-03-031-0/+1
* gh-116102: Silence a Compiler Warning in _xxinterpqueues (gh-116230)Eric Snow2024-03-021-1/+1
* gh-114271: Make `_thread.ThreadHandle` thread-safe in free-threaded builds (G...mpage2024-03-011-40/+127
* gh-115773: Add missing preprocessor guard in _testexternalinspection (#116212)Malcolm Smith2024-03-011-1/+1
* gh-116099: Fix refcounting bug in `_queueobj_shared()` (gh-116164)Brett Simmers2024-03-011-3/+1
* gh-103092: Add a mutex to make the PRNG state of rotatingtree concurrent-safe...AN Long2024-02-292-3/+10
* gh-115398: Expose Expat >=2.6.0 reparse deferral API (CVE-2023-52425) (GH-115...Sebastian Pipping2024-02-295-2/+155
* gh-71052: Fix several Android build issues (#115955)Malcolm Smith2024-02-291-1/+1
* gh-76785: Update test.support.interpreters to Align With PEP 734 (gh-115566)Eric Snow2024-02-282-36/+147
* gh-112529: Simplify PyObject_GC_IsTracked and PyObject_GC_IsFinalized (#114732)Sam Gross2024-02-282-20/+49
* gh-115773: Add tests to exercise the _Py_DebugOffsets structure (#115774)Pablo Galindo Salgado2024-02-283-0/+631
* GH-115816: Assorted naming and formatting changes to improve maintainability....Mark Shannon2024-02-271-1/+1
* GH-115816: Make tier2 optimizer symbols testable, and add a few tests. (GH-11...Mark Shannon2024-02-271-1/+2
* gh-115168: Add pystats counter for invalidated executors (GH-115169)Michael Droettboom2024-02-261-1/+1
* gh-115882: Reference Unknwn.h for ctypes on Windows (GH-115350)Yuriy Chernyshov2024-02-261-0/+4
* gh-72249: Include the module name in the repr of partial object (GH-101910)Furkan Onder2024-02-251-2/+19
* gh-115886: Handle embedded null characters in shared memory name (GH-115887)Serhiy Storchaka2024-02-251-2/+13
* gh-67044: Always quote or escape \r and \n in csv.writer() (GH-115741)Serhiy Storchaka2024-02-231-0/+2
* gh-115714: Don't use CLOCK_PROCESS_CPUTIME_ID and times() on WASI (GH-115757)Petr Viktorin2024-02-221-5/+11
* gh-111225: Link extension modules against libpython on Android (#115780)Malcolm Smith2024-02-211-13/+1
* gh-110850: Cleanup PyTime API: PyTime_t are nanoseconds (#115753)Victor Stinner2024-02-213-32/+27
* gh-110850: Replace private _PyTime_MAX with public PyTime_MAX (#115751)Victor Stinner2024-02-211-1/+1
* gh-110850: Use public PyTime functions (#115746)Victor Stinner2024-02-209-52/+37
* gh-110850: Rename internal PyTime C API functions (#115734)Victor Stinner2024-02-206-19/+19
* gh-104061: Add socket.SO_BINDTOIFINDEX constant (GH-104062)Victor Westerhuis2024-02-201-0/+3
* Tier 2 cleanups and tweaks (#115534)Guido van Rossum2024-02-201-4/+4
* gh-110850: Cleanup pycore_time.h includes (#115724)Victor Stinner2024-02-2012-3/+13
* gh-115712: Support CSV dialects with delimiter=' ' and skipinitialspace=True ...Serhiy Storchaka2024-02-201-7/+29
* gh-110850: Replace _PyTime_t with PyTime_t (#115719)Victor Stinner2024-02-2015-112/+112
* gh-112175: Add `eval_breaker` to `PyThreadState` (#115194)Brett Simmers2024-02-201-7/+4
* gh-110850: Enhance PyTime C API tests (#115715)Victor Stinner2024-02-201-4/+9
* GH-112354: Initial implementation of warm up on exits and trace-stitching (GH...Mark Shannon2024-02-201-1/+3
* gh-95782: Fix io.BufferedReader.tell() etc. being able to return offsets < 0 ...6t8k2024-02-171-1/+10
* gh-115103: Implement delayed memory reclamation (QSBR) (#115180)Sam Gross2024-02-161-0/+1