summaryrefslogtreecommitdiff
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2010-11-30 02:49:29 +0000
committerRaymond Hettinger <python@rcn.com>2010-11-30 02:49:29 +0000
commit398aad9a09fd5c85a354955b03448e4802ba6463 (patch)
tree2e6ce16fbe229b5b7ba9f2083e5fdead8860365d /Misc/NEWS
parente0aff22e79235a8d6314db9943c40679a3794a4a (diff)
downloadcpython-398aad9a09fd5c85a354955b03448e4802ba6463.tar.gz
Issue #10323: Predictable final state for slice().
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 71cbc3267e..320aaaa4a8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -43,6 +43,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__.