summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2010-11-29 03:56:12 (GMT)
committerRaymond Hettinger <python@rcn.com>2010-11-29 03:56:12 (GMT)
commitead22227cce112457b6beba8b008699ea4a3a084 (patch)
tree9dcc912a990ce6e6730f52e71d431ac489eb7b70 /Misc
parent263cbdfdfb0a7fe13f04c1b3188968d7a39d7d09 (diff)
downloadcpython-ead22227cce112457b6beba8b008699ea4a3a084.zip
cpython-ead22227cce112457b6beba8b008699ea4a3a084.tar.gz
cpython-ead22227cce112457b6beba8b008699ea4a3a084.tar.bz2
Issue #10565: Iterator ABC should require both __next__ and __iter__.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 27c7331..79171a5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -43,6 +43,9 @@ Core and Builtins
Library
-------
+- Issue #10565: The collections.Iterator ABC now checks for both
+ __iter__ and __next__.
+
- Issue #10242: Fixed implementation of unittest.ItemsEqual and gave it
a new more informative name, unittest.CountEqual.