summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-01-17 04:15:01 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-01-17 04:15:01 (GMT)
commit9953a8dfd6b078b58a7c73991660537677d11b56 (patch)
tree2d436fb4412751395ad065101f75cfa1f31806df /Misc
parentc10c34d6cb0d06632c7706a16cb3d448e0c3cfce (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7588f46..28cd6b6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.