summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2011-01-25 21:32:39 (GMT)
committerRaymond Hettinger <python@rcn.com>2011-01-25 21:32:39 (GMT)
commit512d2cc64328d06f4ff627497ab444e83e513348 (patch)
tree6d3599b5f69310a74dba4eb02c79e91899aba4a0 /Misc
parent5543e8135240cfe4f3d1021c1debe752e3cd7309 (diff)
downloadcpython-512d2cc64328d06f4ff627497ab444e83e513348.zip
cpython-512d2cc64328d06f4ff627497ab444e83e513348.tar.gz
cpython-512d2cc64328d06f4ff627497ab444e83e513348.tar.bz2
Issue #11004: Repair edge case in deque.count().
(Reviewed by Georg Brandl.) Also made similar changes to deque.reverse() though this wasn't strictly necessary (the edge case cannot occur with two pointers moving to meet in the middle). Making the change in reverse() was more a matter of future-proofing.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 07f493a..5655205 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -16,6 +16,8 @@ Core and Builtins
Library
-------
+- Issue #11004: Repaired edge case in deque.count().
+
- Issue #10974: IDLE no longer crashes if its recent files list includes files
with non-ASCII characters in their path names.