summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2008-12-03 15:42:10 (GMT)
committerRaymond Hettinger <python@rcn.com>2008-12-03 15:42:10 (GMT)
commit7989a4dccb39aa954057cbc4205473f09daae84b (patch)
tree1e3d69be16c9c149eabab7d4fe3c07f13c25f236 /Misc
parentfd8a1ec4863b8a53436dd45fd190b2fe3ac4b2a8 (diff)
downloadcpython-7989a4dccb39aa954057cbc4205473f09daae84b.zip
cpython-7989a4dccb39aa954057cbc4205473f09daae84b.tar.gz
cpython-7989a4dccb39aa954057cbc4205473f09daae84b.tar.bz2
Backport r67478
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 57c6fff..025ca4c 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.