index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
/
clinic
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-119793: Prefer `map(..., strict=True)` over starmap/zip in examples (#126407)
Lukas Geiger
2024-11-05
1
-2/+2
*
gh-126220: Adapt `_lsprof` to Argument Clinic (#126233)
sobolevn
2024-11-04
1
-1/+361
*
gh-125916: Adapt functools.reduce() to Argument Clinic (#125999)
Sergey B Kirpichev
2024-11-01
1
-1/+45
*
gh-101123: Adapt vararg functions in the math module to Argument Clinic (#126...
Sergey B Kirpichev
2024-10-31
1
-1/+99
*
gh-90370: Argument Clinic: avoid temporary tuple creation for varargs (#126064)
Sergey B Kirpichev
2024-10-31
2
-57/+30
*
gh-94512: Fix forced arg format in posixmodule.c clinic code (#122516)
Bénédikt Tran
2024-10-26
1
-38/+154
*
gh-124984: Enhance `ssl` thread safety (#124993)
Peter Bierma
2024-10-19
1
-18/+1183
*
gh-125243: Fix ZoneInfo data race in free threading build (#125281)
Sam Gross
2024-10-13
1
-1/+60
*
gh-124917: Allow keyword args to os.path.exists/lexists on Windows (#124918)
Jelle Zijlstra
2024-10-11
1
-9/+69
*
gh-123961: Convert `curses.window` static type into a heap type (#124934)
Bénédikt Tran
2024-10-04
1
-5/+5
*
gh-120378: Fix crash caused by integer overflow in `curses` (#124555)
Peter Bierma
2024-10-02
1
-19/+79
*
gh-124665: Add `_PyCodec_UnregisterError` and `_codecs._unregister_error` (#1...
Bénédikt Tran
2024-09-29
1
-1/+51
*
gh-123014: Disable pidfd API on older Android versions (#124458)
Malcolm Smith
2024-09-25
2
-6/+6
*
gh-102511: Change the `os.path.splitroot` param name from `path` back to `p` ...
sobolevn
2024-09-18
1
-4/+4
*
gh-99108: Add HACL* Blake2 implementation to hashlib (GH-119316)
Jonathan Protzenko
2024-08-13
1
-0/+462
*
gh-122688: Add more tests for var-positional parameters in Argument Clinic (G...
Serhiy Storchaka
2024-08-12
1
-56/+223
*
gh-115808: Add ``is_none`` and ``is_not_none`` to ``operator`` (#115814)
Nico Mexis
2024-08-10
1
-1/+19
*
gh-122688: Fix support of var-positional parameter in Argument Clinic (GH-122...
Serhiy Storchaka
2024-08-09
1
-37/+73
*
gh-118814: Fix the TypeVar constructor when name is passed by keyword (GH-122...
Serhiy Storchaka
2024-08-07
1
-1/+73
*
gh-121381 Remove subprocess._USE_VFORK escape hatch (#121383)
Cody Maloney
2024-07-31
1
-10/+5
*
gh-118830: Bump pickle.DEFAULT_PROTOCOL to 5 (GH-119340)
Rodrigo Oliveira
2024-07-19
1
-4/+4
*
gh-121905: Consistently use "floating-point" instead of "floating point" (GH-...
Serhiy Storchaka
2024-07-19
4
-10/+10
*
gh-121592: Make select.poll() and related objects thread-safe (#121594)
Sam Gross
2024-07-11
1
-5/+46
*
gh-117657: Use critical section to make _socket.socket.close thread safe (GH-...
AN Long
2024-07-01
1
-1/+28
*
GH-107803: double linked list implementation for asyncio tasks (GH-107804)
Kumar Aditya
2024-06-22
1
-1/+61
*
gh-113993: Allow interned strings to be mortal, and fix related issues (GH-12...
Petr Viktorin
2024-06-21
9
-72/+72
*
gh-120780: Show attribute name for LOAD_SPECIAL in dis output (#120781)
Jelle Zijlstra
2024-06-20
1
-1/+19
*
gh-120057: Add os.environ.refresh() method (#120059)
Victor Stinner
2024-06-10
1
-1/+19
*
gh-119842: Honor PyOS_InputHook in the new REPL (GH-119843)
Pablo Galindo Salgado
2024-06-04
1
-1/+37
*
gh-89928: Fix integer conversion of device numbers (GH-31794)
Serhiy Storchaka
2024-06-04
1
-22/+10
*
gh-119690: Adds Unicode support for named pipes in _winapi (GH-119717)
Steve Dower
2024-05-29
1
-9/+15
*
gh-119661: Add _Py_SINGLETON() include in Argumenet Clinic (#119712)
Victor Stinner
2024-05-29
7
-10/+22
*
gh-117557: Improve error messages when a string, bytes or bytearray of length...
Serhiy Storchaka
2024-05-28
3
-43/+275
*
gh-118263: Add additional arguments to path_t (Argument Clinic type) in posix...
Nice Zombies
2024-05-24
1
-92/+135
*
gh-69214: Fix fcntl.ioctl() request type (#119498)
Victor Stinner
2024-05-24
1
-5/+6
*
Remove almost all unpaired backticks in docstrings (#119231)
Geoffrey Thomas
2024-05-22
1
-2/+2
*
gh-119213: Be More Careful About _PyArg_Parser.kwtuple Across Interpreters (g...
Eric Snow
2024-05-22
1
-1/+61
*
gh-118507 : Refactor `nt._path_is*` to improve applicability for other cases ...
Nice Zombies
2024-05-21
1
-32/+124
*
gh-66410: Do not stringify arguments of Tkinter callback (GH-98592)
Serhiy Storchaka
2024-05-07
1
-4/+4
*
gh-71592: Add ability to trace Tcl commands executed by Tkinter (GH-118291)
Serhiy Storchaka
2024-05-06
1
-1/+28
*
gh-102511: Speed up os.path.splitroot() with native helpers (GH-118089)
Nice Zombies
2024-04-25
1
-1/+59
*
gh-117680: make _PyInstructionSequence a PyObject and use it in tests (#117629)
Irit Katriel
2024-04-17
1
-1/+19
*
gh-117613: Argument Clinic: ensure that 'defining_class' params are positiona...
neonene
2024-04-16
1
-2/+2
*
gh-117613: Enhance test_clinic @defining_class tests (#117896)
Victor Stinner
2024-04-16
1
-10/+66
*
gh-90329: Add _winapi.GetLongPathName and GetShortPathName and use in venv to...
Steve Dower
2024-04-15
1
-1/+141
*
gh-117764: Use Argument Clinic for signal.set_wakeup_fd() (GH-117777)
Serhiy Storchaka
2024-04-12
1
-1/+76
*
gh-111926: Make weakrefs thread-safe in free-threaded builds (#117168)
mpage
2024-04-08
1
-19/+1
*
gh-117440: Make `syslog` thread-safe in free-threaded builds (#117441)
Sam Gross
2024-04-02
1
-2/+13
*
gh-112383: teach dis how to interpret ENTER_EXECUTOR (#117171)
Irit Katriel
2024-03-23
1
-1/+61
*
gh-85283: Build _statistics extension with the limited C API (#116927)
Victor Stinner
2024-03-17
1
-32/+13
[next]