summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-08-13 06:35:21 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-08-13 06:35:21 (GMT)
commitcd3aacf5251ded68df29e2528cd88febc00b604b (patch)
tree6f82a706bda669060c7e1c42b30e3dfc09b8a8fe /Misc/NEWS
parent4d58897fdb0f123340246fac79174a52d7cbcf85 (diff)
downloadcpython-cd3aacf5251ded68df29e2528cd88febc00b604b.zip
cpython-cd3aacf5251ded68df29e2528cd88febc00b604b.tar.gz
cpython-cd3aacf5251ded68df29e2528cd88febc00b604b.tar.bz2
Issue #20729: Restored the use of lazy iterkeys()/itervalues()/iteritems()
in the mailbox module. This is partial rollback of changeset f340cb045bf9.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 310a3b0..18e5a6d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -27,6 +27,9 @@ Core and Builtins
Library
-------
+- Issue #20729: Restored the use of lazy iterkeys()/itervalues()/iteritems()
+ in the mailbox module.
+
- Issue #21448: Changed FeedParser feed() to avoid O(N**2) behavior when
parsing long line. Original patch by Raymond Hettinger.