diff options
author | Raymond Hettinger <python@rcn.com> | 2008-12-02 21:33:45 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2008-12-02 21:33:45 (GMT) |
commit | f5b64116cc85d82df021aa30bbd63f9823b0efeb (patch) | |
tree | 871cdc4c5885d048a1500509ec60552c5725cf9e /Misc | |
parent | 048690410f6ad62327e6cde573d6e8b702ea708b (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |