summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2009-06-25 22:29:29 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2009-06-25 22:29:29 (GMT)
commit595f7a5bf959f97b5d889ab5c7f86c06e36e8dfb (patch)
tree74ebe5456e7c8745184ed83e9899cf294c7ad3e8 /Misc
parentca69bb90cb6091453d74d9693653b1c649553782 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c9c9b55..571094c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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