summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2010-11-30 03:09:05 (GMT)
committerRaymond Hettinger <python@rcn.com>2010-11-30 03:09:05 (GMT)
commit101f09e72f821bf153de0a3b8d361b9005a124da (patch)
treee7b38903c0966109dba1aa9af2195a851e17c350 /Misc
parentfdb32c15e4c5ab924b7f547c803befa58c2a490f (diff)
downloadcpython-101f09e72f821bf153de0a3b8d361b9005a124da.zip
cpython-101f09e72f821bf153de0a3b8d361b9005a124da.tar.gz
cpython-101f09e72f821bf153de0a3b8d361b9005a124da.tar.bz2
Issue #10323: Predictable final state for slice().
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 11a26d4..c609740 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -28,6 +28,10 @@ Core and Builtins
Library
-------
+- Issue #10323: itertools.islice() now consumes the minimum number of
+ inputs before stopping. Formerly, the final state of the underlying
+ iterator was undefined.
+
- Issue #10565: The collections.Iterator ABC now checks for both
__iter__ and __next__.