summaryrefslogtreecommitdiffstats
path: root/Modules/clinic
Commit message (Expand)AuthorAgeFilesLines
* gh-99108: Implement HACL* HMAC (#130157)Bénédikt Tran2025-04-041-0/+673
* gh-131525: Cache the result of tuple_hash (#131529)Michael Droettboom2025-03-2744-44/+720
* gh-131268: Implement thread names on OpenBSD (#131528)Xavier G.2025-03-211-5/+5
* gh-126895: Fix readline module in free-threaded build (#131208)Tomasz Pytel2025-03-171-6/+119
* gh-111178: Change Argument Clinic signature for `@classmethod` (#131157)Victor Stinner2025-03-124-18/+44
* gh-111178: Change Argument Clinic signature for METH_O (#130682)Victor Stinner2025-03-1115-25/+391
* Revert "gh-128942: make `array` module thread safe (#128943)" (#130707)Sam Gross2025-02-281-147/+9
* gh-128942: make `array` module thread safe (#128943)Tomasz Pytel2025-02-271-9/+147
* gh-91048: fix thread safety for asyncio stack introspection APIs (#129399)Kumar Aditya2025-02-061-26/+26
* gh-129205: Add os.readinto() API for reading data into a caller provided buff...Cody Maloney2025-01-261-1/+57
* GH-91048: Add utils for capturing async call stack for asyncio programs and e...Yury Selivanov2025-01-221-1/+87
* gh-111178: Generate correct signature for most self converters (#128447)Erlend E. Aasland2025-01-2032-830/+830
* gh-59705: Implement _thread.set_name() on Windows (#128675)Victor Stinner2025-01-171-5/+5
* gh-127614: Correctly check for ttyname_r() in configure (#128503)Erlend E. Aasland2025-01-071-3/+3
* gh-128002: fix many thread safety issues in asyncio (#128147)Kumar Aditya2025-01-041-14/+536
* gh-128277: remove unnecessary critical section from `socket.close` (#128305)Kumar Aditya2025-01-011-9/+2
* gh-128083: Fix macro redefinition warning in clinic. (GH-127950)Peter Bierma2024-12-191-1/+49
* gh-59705: Add _thread.set_name() function (#127338)Victor Stinner2024-12-061-0/+104
* gh-127627: Add `posix._emscripten_debugger` function (#127628)Hood Chatham2024-12-061-1/+27
* gh-126890: Restore stripped `ssl` docstrings (GH-127281)Peter Bierma2024-12-021-1/+64
* gh-127341: Argument Clinic: fix compiler warnings for getters with docstrings...Peter Bierma2024-11-291-112/+40
* gh-126316: Make grp.getgrall() thread-safe: add a mutex (#127055)Victor Stinner2024-11-211-11/+77
* gh-118201: Simplify conv_confname (#126089)Malcolm Smith2024-11-191-5/+5
* gh-125916: Allow functools.reduce() 'initial' to be a keyword argument (#125917)Sayandip Dutta2024-11-121-8/+37
* gh-122943: Add the varpos parameter in _PyArg_UnpackKeywords (GH-126564)Serhiy Storchaka2024-11-0844-392/+740
* gh-122943: Rework support of var-positional parameter in Argument Clinic (GH-...Serhiy Storchaka2024-11-074-131/+731
* gh-119793: Prefer `map(..., strict=True)` over starmap/zip in examples (#126407)Lukas Geiger2024-11-051-2/+2
* gh-126220: Adapt `_lsprof` to Argument Clinic (#126233)sobolevn2024-11-041-1/+361
* gh-125916: Adapt functools.reduce() to Argument Clinic (#125999)Sergey B Kirpichev2024-11-011-1/+45
* gh-101123: Adapt vararg functions in the math module to Argument Clinic (#126...Sergey B Kirpichev2024-10-311-1/+99
* gh-90370: Argument Clinic: avoid temporary tuple creation for varargs (#126064)Sergey B Kirpichev2024-10-312-57/+30
* gh-94512: Fix forced arg format in posixmodule.c clinic code (#122516)Bénédikt Tran2024-10-261-38/+154
* gh-124984: Enhance `ssl` thread safety (#124993)Peter Bierma2024-10-191-18/+1183
* gh-125243: Fix ZoneInfo data race in free threading build (#125281)Sam Gross2024-10-131-1/+60
* gh-124917: Allow keyword args to os.path.exists/lexists on Windows (#124918)Jelle Zijlstra2024-10-111-9/+69
* gh-123961: Convert `curses.window` static type into a heap type (#124934)Bénédikt Tran2024-10-041-5/+5
* gh-120378: Fix crash caused by integer overflow in `curses` (#124555)Peter Bierma2024-10-021-19/+79
* gh-124665: Add `_PyCodec_UnregisterError` and `_codecs._unregister_error` (#1...Bénédikt Tran2024-09-291-1/+51
* gh-123014: Disable pidfd API on older Android versions (#124458)Malcolm Smith2024-09-252-6/+6
* gh-102511: Change the `os.path.splitroot` param name from `path` back to `p` ...sobolevn2024-09-181-4/+4
* gh-99108: Add HACL* Blake2 implementation to hashlib (GH-119316)Jonathan Protzenko2024-08-131-0/+462
* gh-122688: Add more tests for var-positional parameters in Argument Clinic (G...Serhiy Storchaka2024-08-121-56/+223
* gh-115808: Add ``is_none`` and ``is_not_none`` to ``operator`` (#115814)Nico Mexis2024-08-101-1/+19
* gh-122688: Fix support of var-positional parameter in Argument Clinic (GH-122...Serhiy Storchaka2024-08-091-37/+73
* gh-118814: Fix the TypeVar constructor when name is passed by keyword (GH-122...Serhiy Storchaka2024-08-071-1/+73
* gh-121381 Remove subprocess._USE_VFORK escape hatch (#121383)Cody Maloney2024-07-311-10/+5
* gh-118830: Bump pickle.DEFAULT_PROTOCOL to 5 (GH-119340)Rodrigo Oliveira2024-07-191-4/+4
* gh-121905: Consistently use "floating-point" instead of "floating point" (GH-...Serhiy Storchaka2024-07-194-10/+10
* gh-121592: Make select.poll() and related objects thread-safe (#121594)Sam Gross2024-07-111-5/+46
* gh-117657: Use critical section to make _socket.socket.close thread safe (GH-...AN Long2024-07-011-1/+28