diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2009-06-25 22:29:29 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2009-06-25 22:29:29 (GMT) |
commit | 595f7a5bf959f97b5d889ab5c7f86c06e36e8dfb (patch) | |
tree | 74ebe5456e7c8745184ed83e9899cf294c7ad3e8 /Misc | |
parent | ca69bb90cb6091453d74d9693653b1c649553782 (diff) | |
download | cpython-595f7a5bf959f97b5d889ab5c7f86c06e36e8dfb.zip cpython-595f7a5bf959f97b5d889ab5c7f86c06e36e8dfb.tar.gz cpython-595f7a5bf959f97b5d889ab5c7f86c06e36e8dfb.tar.bz2 |
#2016 Fix a crash in function call when the **kwargs dictionary is mutated
during the function call setup.
This even gives a slight speedup, probably because tuple allocation
is faster than PyMem_NEW.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -12,6 +12,9 @@ What's New in Python 2.7 alpha 1 Core and Builtins ----------------- +- Issue #2016: Fixed a crash in a corner case where the dictionary of keyword + arguments could be modified during the function call setup. + - Removed the ipaddr module. - Issue #6329: Fixed iteration for memoryview objects (it was being blocked |