summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-05-13 18:48:01 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-05-13 18:48:01 (GMT)
commit9a2349030a706433b519ae99816fc540ecefc143 (patch)
tree8afad14bc8fa10812c97a35ef4fc1ab09521ee43 /Misc
parent7feb9f42258ff72ce1d3628c5ccc261c2ca238b9 (diff)
downloadcpython-9a2349030a706433b519ae99816fc540ecefc143.zip
cpython-9a2349030a706433b519ae99816fc540ecefc143.tar.gz
cpython-9a2349030a706433b519ae99816fc540ecefc143.tar.bz2
Issue #14417: Mutating a dict during lookup now restarts the lookup instead of raising a RuntimeError (undoes issue #14205).
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 031738d..f27dab5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.3.0 Alpha 4?
Core and Builtins
-----------------
+- Issue #14417: Mutating a dict during lookup now restarts the lookup instead
+ of raising a RuntimeError (undoes issue #14205).
+
- Issue #14738: Speed-up UTF-8 decoding on non-ASCII data. Patch by Serhiy
Storchaka.