summaryrefslogtreecommitdiffstats
path: root/Modules/clinic
Commit message (Expand)AuthorAgeFilesLines
* [3.13] gh-127614: Correctly check for ttyname_r() in configure (#128503) (#12...Erlend E. Aasland2025-01-111-3/+3
* [3.13] gh-128083: Fix macro redefinition warning in clinic. (GH-127950) (#128...Peter Bierma2024-12-191-1/+49
* [3.13] gh-126890: Restore stripped `ssl` docstrings (GH-127281) (#127513)Peter Bierma2024-12-021-112/+103
* [3.13] gh-124984: Enhance `ssl` thread safety (GH-124993) (#125780)Peter Bierma2024-12-021-18/+1183
* [3.13] gh-126316: Make grp.getgrall() thread-safe: add a mutex (#127055) (#12...Victor Stinner2024-11-261-35/+42
* [3.13] gh-125243: Fix ZoneInfo data race in free threading build (GH-125281) ...Miss Islington (bot)2024-10-151-1/+60
* [3.13] gh-124917: Allow keyword args to os.path.exists/lexists on Windows (GH...Jelle Zijlstra2024-10-111-9/+69
* [3.13] gh-102511: Change the `os.path.splitroot` param name from `path` back ...Jelle Zijlstra2024-10-081-4/+4
* [3.13] gh-120378: Fix crash caused by integer overflow in `curses` (GH-124555...Miss Islington (bot)2024-10-071-19/+79
* [3.13] gh-123014: Disable pidfd API on older Android versions (GH-124458) (#1...Malcolm Smith2024-09-262-6/+6
* [3.13] gh-122688: Fix support of var-positional parameter in Argument Clinic ...Serhiy Storchaka2024-09-021-37/+73
* [3.13] gh-118814: Fix the TypeVar constructor when name is passed by keyword ...Serhiy Storchaka2024-08-081-1/+73
* [3.13] gh-121905: Consistently use "floating-point" instead of "floating poin...Serhiy Storchaka2024-07-194-10/+10
* [3.13] gh-121592: Make select.poll() and related objects thread-safe (GH-1215...Miss Islington (bot)2024-07-111-5/+46
* [3.13] gh-113993: Allow interned strings to be mortal, and fix related issues...Petr Viktorin2024-06-249-72/+72
* [3.13] gh-119842: Honor PyOS_InputHook in the new REPL (GH-119843) (GH-120066)Łukasz Langa2024-06-041-1/+37
* [3.13] gh-89928: Fix integer conversion of device numbers (GH-31794) (GH-120053)Miss Islington (bot)2024-06-041-22/+10
* [3.13] Revert "[3.13] gh-69214: Fix fcntl.ioctl() request type (GH-119498) (...Victor Stinner2024-06-011-6/+5
* gh-119690: Adds Unicode support for named pipes in _winapi (GH-119717)Miss Islington (bot)2024-05-311-9/+15
* [3.13] gh-119661: Add _Py_SINGLETON() include in Argumenet Clinic (#119712) (...Victor Stinner2024-05-297-10/+22
* gh-118263: Add additional arguments to path_t (Argument Clinic type) in posix...Miss Islington (bot)2024-05-241-92/+135
* [3.13] gh-69214: Fix fcntl.ioctl() request type (GH-119498) (#119504)Miss Islington (bot)2024-05-241-5/+6
* [3.13] gh-119213: Be More Careful About _PyArg_Parser.kwtuple Across Interpre...Miss Islington (bot)2024-05-221-1/+61
* gh-118507 : Refactor `nt._path_is*` to improve applicability for other cases ...Miss Islington (bot)2024-05-221-32/+124
* gh-66410: Do not stringify arguments of Tkinter callback (GH-98592)Serhiy Storchaka2024-05-071-4/+4
* gh-71592: Add ability to trace Tcl commands executed by Tkinter (GH-118291)Serhiy Storchaka2024-05-061-1/+28
* gh-102511: Speed up os.path.splitroot() with native helpers (GH-118089)Nice Zombies2024-04-251-1/+59
* gh-117680: make _PyInstructionSequence a PyObject and use it in tests (#117629)Irit Katriel2024-04-171-1/+19
* gh-117613: Argument Clinic: ensure that 'defining_class' params are positiona...neonene2024-04-161-2/+2
* gh-117613: Enhance test_clinic @defining_class tests (#117896)Victor Stinner2024-04-161-10/+66
* gh-90329: Add _winapi.GetLongPathName and GetShortPathName and use in venv to...Steve Dower2024-04-151-1/+141
* gh-117764: Use Argument Clinic for signal.set_wakeup_fd() (GH-117777)Serhiy Storchaka2024-04-121-1/+76
* gh-111926: Make weakrefs thread-safe in free-threaded builds (#117168)mpage2024-04-081-19/+1
* gh-117440: Make `syslog` thread-safe in free-threaded builds (#117441)Sam Gross2024-04-021-2/+13
* gh-112383: teach dis how to interpret ENTER_EXECUTOR (#117171)Irit Katriel2024-03-231-1/+61
* gh-85283: Build _statistics extension with the limited C API (#116927)Victor Stinner2024-03-171-32/+13
* gh-85283: Build termios extension with the limited C API (#116928)Victor Stinner2024-03-171-13/+16
* gh-73468: Add math.fma() function (#116667)Victor Stinner2024-03-171-1/+62
* gh-85283: Build pwd extension with the limited C API (#116841)Victor Stinner2024-03-151-4/+2
* gh-116646, AC: Always use PyObject_AsFileDescriptor() in fildes (#116806)Victor Stinner2024-03-143-38/+67
* gh-116646, AC: Add CConverter.use_converter() method (#116793)Victor Stinner2024-03-141-2/+1
* gh-85283: Build fcntl extension with the limited C API (#116791)Victor Stinner2024-03-141-16/+33
* gh-116646: Add limited C API support to AC fildes converter (#116769)Victor Stinner2024-03-141-1/+34
* gh-85283: Convert grp extension to the limited C API (#116611)Victor Stinner2024-03-121-75/+11
* gh-110850: Fix _PyTime_FromSecondsDouble() API (#116606)Victor Stinner2024-03-111-12/+12
* gh-116417: Avoid PyFloat_AS_DOUBLE() in AC limited C API (#116568)Victor Stinner2024-03-101-1/+83
* gh-115398: Expose Expat >=2.6.0 reparse deferral API (CVE-2023-52425) (GH-115...Sebastian Pipping2024-02-292-2/+66
* gh-112529: Simplify PyObject_GC_IsTracked and PyObject_GC_IsFinalized (#114732)Sam Gross2024-02-281-1/+39
* gh-112050: Make collections.deque thread-safe in free-threaded builds (#113830)mpage2024-02-151-8/+149
* gh-89240: Enable multiprocessing on Windows to use large process pools (GH-10...Steve Dower2024-02-131-1/+497