summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-03-30 18:11:16 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-03-30 18:11:16 (GMT)
commitab0d198c7a6b2133ba5f782d7b951fef00ae615c (patch)
treea06cc9e22092d9e4cbb0c7bc5aaf96d5eac72ab6 /Misc
parentf39c0ac62f90842b790a41f1b0ddd51a6e3d8dc2 (diff)
downloadcpython-ab0d198c7a6b2133ba5f782d7b951fef00ae615c.zip
cpython-ab0d198c7a6b2133ba5f782d7b951fef00ae615c.tar.gz
cpython-ab0d198c7a6b2133ba5f782d7b951fef00ae615c.tar.bz2
Issue #26492: Exhausted iterator of array.array now conforms with the behavior
of iterators of other mutable sequences: it lefts exhausted even if iterated array is extended.
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 6fb0fc4..6b6d11c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -237,6 +237,10 @@ Core and Builtins
Library
-------
+- Issue #26492: Exhausted iterator of array.array now conforms with the behavior
+ of iterators of other mutable sequences: it lefts exhausted even if iterated
+ array is extended.
+
- Issue #26641: doctest.DocFileTest and doctest.testfile() now support
packages (module splitted into multiple directories) for the package
parameter.