summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2008-12-02 21:33:45 (GMT)
committerRaymond Hettinger <python@rcn.com>2008-12-02 21:33:45 (GMT)
commitf5b64116cc85d82df021aa30bbd63f9823b0efeb (patch)
tree871cdc4c5885d048a1500509ec60552c5725cf9e /Misc
parent048690410f6ad62327e6cde573d6e8b702ea708b (diff)
downloadcpython-f5b64116cc85d82df021aa30bbd63f9823b0efeb.zip
cpython-f5b64116cc85d82df021aa30bbd63f9823b0efeb.tar.gz
cpython-f5b64116cc85d82df021aa30bbd63f9823b0efeb.tar.bz2
Issue 3689: list_reverseiterator should support __length_hint__ instead of __len__.
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 a8565c9..b1bd085 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -16,6 +16,9 @@ Core and Builtins
interpreter to abort ("Fatal Python error: Could not reset the stack!")
instead of throwing a MemoryError.
+- Issue #3689: The list reversed iterator now supports __length_hint__
+ instead of __len__. Behavior now matches other reversed iterators.
+
- Issue #4367: Python would segfault during compiling when the unicodedata
module couldn't be imported and \N escapes were present.