diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-03-28 22:32:31 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-03-28 22:32:31 (GMT) |
commit | 6a2638b1637bd7f79f55def97df20cfccff02509 (patch) | |
tree | 3a45b015ff2be6a0a91f3ce19b69b66279bebad5 /Misc | |
parent | 3077404de4ce8efe5214f4dbf973421eebdf1181 (diff) | |
download | cpython-6a2638b1637bd7f79f55def97df20cfccff02509.zip cpython-6a2638b1637bd7f79f55def97df20cfccff02509.tar.gz cpython-6a2638b1637bd7f79f55def97df20cfccff02509.tar.bz2 |
Correct handling of functions with only kwarg args in getcallargs (closes #11256)
A patch from Daniel Urban.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -49,6 +49,9 @@ Core and Builtins Library ------- +- Issue #11256: Fix inspect.getcallargs on functions that take only keyword + arguments. + - Issue #11696: Fix ID generation in msilib. - Issue #9696: Fix exception incorrectly raised by xdrlib.Packer.pack_int when |