summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2013-01-09 15:52:01 (GMT)
committerBenjamin Peterson <benjamin@python.org>2013-01-09 15:52:01 (GMT)
commit0c270a8bb748f09b7de6f6ce21d405e0c83be329 (patch)
treea8b6e4c9160dd5ca34c2d7707c6530c3a7f68461 /Misc
parent7131749959e674ae347e34efabdc6291b21cbe43 (diff)
downloadcpython-0c270a8bb748f09b7de6f6ce21d405e0c83be329.zip
cpython-0c270a8bb748f09b7de6f6ce21d405e0c83be329.tar.gz
cpython-0c270a8bb748f09b7de6f6ce21d405e0c83be329.tar.bz2
correct static string clearing loop (closes #16906)
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 e3fd61c..6ed6101 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.3.1?
Core and Builtins
-----------------
+- Issue #16906: Fix a logic error that prevented most static strings from being
+ cleared.
+
- Issue #11461: Fix the incremental UTF-16 decoder. Original patch by
Amaury Forgeot d'Arc.