summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2010-11-30 03:15:35 (GMT)
committerRaymond Hettinger <python@rcn.com>2010-11-30 03:15:35 (GMT)
commit061bf7a11a390c70dc6660691518241679a1698e (patch)
tree6905cd12a19a363b9c9985c337e977f110c82a62 /Misc
parent1fea5c4472b29fff85ae40a8d7f0c845347ad5c6 (diff)
downloadcpython-061bf7a11a390c70dc6660691518241679a1698e.zip
cpython-061bf7a11a390c70dc6660691518241679a1698e.tar.gz
cpython-061bf7a11a390c70dc6660691518241679a1698e.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 47ddc7f..367900d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -22,6 +22,10 @@ What's New in Python 2.7.1?
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``.