diff options
author | Raymond Hettinger <python@rcn.com> | 2010-11-29 03:56:12 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2010-11-29 03:56:12 (GMT) |
commit | ead22227cce112457b6beba8b008699ea4a3a084 (patch) | |
tree | 9dcc912a990ce6e6730f52e71d431ac489eb7b70 /Misc | |
parent | 263cbdfdfb0a7fe13f04c1b3188968d7a39d7d09 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |