summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* gh-118335: Configure Tier 2 interpreter at build time (#118339)Guido van Rossum2024-05-012-1/+18
* gh-118422: Fix run_fileexflags() test (#118429)Victor Stinner2024-04-301-7/+6
* gh-118218: Reuse return tuple in itertools.pairwise (GH-118219)Shantanu2024-04-301-2/+32
* gh-118406: Add signature for sqlite3.Connection objects (#118428)Erlend E. Aasland2024-04-301-0/+7
* gh-118332: Fix deadlock involving stop the world (#118412)Sam Gross2024-04-302-1/+87
* gh-118379: Use PyTuple_Pack instead of Py_BuildValue if possible (GH-118381)Nice Zombies2024-04-305-7/+7
* gh-118402: Fix inspect.signature() for functools.cmp_to_key() result (GH-118427)Serhiy Storchaka2024-04-301-0/+12
* gh-117783: Immortalize objects that use deferred reference counting (#118112)Sam Gross2024-04-291-0/+22
* gh-118285: Fix signatures of operator.{attrgetter,itemgetter,methodcaller} in...Serhiy Storchaka2024-04-291-0/+15
* gh-115119: Detect _decimal dependencies using pkg-config (#115406)Erlend E. Aasland2024-04-291-1/+13
* gh-118293: Suppress mouse cursor feedback when launching Windows processes wi...Henrik Tunedal2024-04-281-0/+48
* gh-110693: Pending Calls Machinery Cleanups (gh-118296)Eric Snow2024-04-262-32/+84
* gh-117578: Introduce _PyType_GetModuleByDef2 private function (GH-117661)neonene2024-04-251-5/+3
* gh-102511: Speed up os.path.splitroot() with native helpers (GH-118089)Nice Zombies2024-04-252-1/+103
* gh-117968: Make the test for closed file more safe in the C API tests (GH-118...Serhiy Storchaka2024-04-251-2/+4
* gh-117786: Fix venv created from Windows Store install by restoring __PYVENV_...Steve Dower2024-04-241-10/+14
* gh-76785: Rename _xxsubinterpreters to _interpreters (gh-117791)Eric Snow2024-04-245-9/+10
* gh-117151: optimize BufferedWriter(), do not buffer writes that are the buffe...morotti2024-04-231-2/+2
* gh-68114: Fix handling for removed PyArg_ParseTuple 'w' formatters (GH-8204)Joe Jevnik2024-04-231-0/+118
* gh-116741: Upgrade libexpat to 2.6.2 (#117296)Seth Michael Larson2024-04-233-16/+36
* gh-117995: Don't raise DeprecationWarnings for indexed nameless params (#118001)Erlend E. Aasland2024-04-221-1/+1
* GH-115874: Fix segfault in FutureIter_dealloc (GH-117741)Savannah Ostrowski2024-04-191-2/+16
* gh-114099: Modify preprocessor symbol usage to support older macOS SDKs (GH-1...Russell Keith-Magee2024-04-191-0/+4
* gh-88035: update doc-string of `epoch` in timemodule.c (GH-118076)lit2024-04-191-2/+2
* gh-112069: Add _PySet_NextEntryRef to be thread-safe. (gh-117990)Donghee Na2024-04-183-17/+28
* gh-117968: Add tests for the part of the PyRun family of the C API (GH-117982)Serhiy Storchaka2024-04-174-1/+127
* gh-117680: make _PyInstructionSequence a PyObject and use it in tests (#117629)Irit Katriel2024-04-172-1/+34
* GH-100242: bring functools.py partial implementation more in line with C code...CF Bolz-Tereick2024-04-171-4/+11
* gh-117845: Detect libedit hook function signature in configure (#117870)Joshua Root2024-04-171-2/+2
* gh-117613: Argument Clinic: ensure that 'defining_class' params are positiona...neonene2024-04-162-6/+6
* gh-117613: Enhance test_clinic @defining_class tests (#117896)Victor Stinner2024-04-162-17/+88
* gh-90329: Add _winapi.GetLongPathName and GetShortPathName and use in venv to...Steve Dower2024-04-152-1/+228
* gh-117694: Improve tests for PyEval_EvalCodeEx() (GH-117695)Serhiy Storchaka2024-04-151-80/+33
* gh-117764: Use Argument Clinic for signal.set_wakeup_fd() (GH-117777)Serhiy Storchaka2024-04-122-26/+100
* gh-117764: Add signatures for functions in the faulthandler module (GH-117771)Serhiy Storchaka2024-04-121-26/+35
* gh-117764: Add signature for functools.partial() (GH-117775)Serhiy Storchaka2024-04-121-2/+3
* gh-117764: Add signatures and improve docstrings in the _thread module (GH-11...Serhiy Storchaka2024-04-121-46/+126
* gh-117764: Add signatures for some objects in the itertools module (GH-117774)Serhiy Storchaka2024-04-121-3/+6
* gh-117764: Add signatures in the atexit module (GH-117776)Serhiy Storchaka2024-04-121-5/+10
* gh-117764: Add signatures for __reduce__ and __reduce_ex__ in the _io module ...Serhiy Storchaka2024-04-123-10/+10
* gh-117764: Add docstrings and signatures for the __replace__ methods (GH-117768)Serhiy Storchaka2024-04-121-3/+6
* gh-76785: Handle Legacy Interpreters Properly (gh-117490)Eric Snow2024-04-112-89/+216
* gh-116738: Make _abc module thread-safe (#117488)Brett Simmers2024-04-111-115/+147
* gh-117233: Detect support for several hashes at hashlib build time (GH-117234)Will Childs-Klein2024-04-111-10/+59
* gh-76785: Add More Tests to test_interpreters.test_api (gh-117662)Eric Snow2024-04-114-127/+422
* gh-117142: Port _ctypes to multi-phase init (GH-117181)neonene2024-04-107-178/+1109
* gh-117534: Add checking for input parameter in iso_to_ymd (#117543)Vlad48962024-04-091-7/+9
* gh-116720: Fix corner cases of taskgroups (#117407)Guido van Rossum2024-04-091-0/+3
* gh-111926: Make weakrefs thread-safe in free-threaded builds (#117168)mpage2024-04-086-52/+38
* gh-111140: PyLong_From/AsNativeBytes: Take *flags* rather than just *endianne...Steve Dower2024-04-051-7/+7