commit | c979448507972ddf64d6c4cae24d428c0ac77926 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Wed Jan 28 23:14:58 2009 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Wed Jan 28 23:14:58 2009 +0000 |
tree | 35ec3911334b9337bd1f73adbf9f9e9bf118b918 | |
parent | 84abf9de2f694949db8e1ca9a1dc0e82702f12c5 [diff] [blame] |
Issue 4920: Fixed next() vs __next__() issues in the ABCs for Iterator and MutableSet. Also added thorough test for required abstractmethods.
diff --git a/Misc/NEWS b/Misc/NEWS index 1a39f0e..af0a7ff 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -76,6 +76,9 @@ Library ------- +- Issue 4920: Fixed .next() vs .__next__() issues in the ABCs for + Iterator and MutableSet. + - Issue 5021: doctest.testfile() did not create __name__ and collections.namedtuple() relied on __name__ being defined.