diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-01-17 04:15:01 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-01-17 04:15:01 (GMT) |
commit | 9953a8dfd6b078b58a7c73991660537677d11b56 (patch) | |
tree | 2d436fb4412751395ad065101f75cfa1f31806df /Misc | |
parent | c10c34d6cb0d06632c7706a16cb3d448e0c3cfce (diff) | |
download | cpython-9953a8dfd6b078b58a7c73991660537677d11b56.zip cpython-9953a8dfd6b078b58a7c73991660537677d11b56.tar.gz cpython-9953a8dfd6b078b58a7c73991660537677d11b56.tar.bz2 |
fix inspect.formatargspec on functions with keyword-only arguments without defaults #4959
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -126,6 +126,9 @@ Core and Builtins Library ------- +- Issue #4959: inspect.formatargspec now works for keyword only arguments + without defaults. + - Issue #3826 and #4791: The socket module now closes the underlying socket appropriately when it is being used via socket.makefile() objects rather than delaying the close by waiting for garbage collection to do it. |