diff options
author | Raymond Hettinger <python@rcn.com> | 2010-11-30 03:09:05 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2010-11-30 03:09:05 (GMT) |
commit | 101f09e72f821bf153de0a3b8d361b9005a124da (patch) | |
tree | e7b38903c0966109dba1aa9af2195a851e17c350 /Misc | |
parent | fdb32c15e4c5ab924b7f547c803befa58c2a490f (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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__. |