diff options
author | Raymond Hettinger <python@rcn.com> | 2009-01-28 23:02:26 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2009-01-28 23:02:26 (GMT) |
commit | f779e6f51bc9e96af8478d9463b1f10876fdc729 (patch) | |
tree | f01f2bb1957d4dd16288fce345ab786571cbd457 /Misc/NEWS | |
parent | b1a98de25ecd3e11fc3093de31fe844233dcd389 (diff) | |
download | cpython-f779e6f51bc9e96af8478d9463b1f10876fdc729.zip cpython-f779e6f51bc9e96af8478d9463b1f10876fdc729.tar.gz cpython-f779e6f51bc9e96af8478d9463b1f10876fdc729.tar.bz2 |
Issue 4920: Fixed next() vs __next__() issues in the ABCs
for Iterator and MutableSet. Also added thorough test for
required abstractmethods.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -145,6 +145,9 @@ Core and Builtins Library ------- +- Issue 4920: Fixed .next() vs .__next__() issues in the ABCs for + Iterator and MutableSet. + - Added the ttk module. See issue #2983: Ttk support for Tkinter. - Issue 5021: doctest.testfile() did not create __name__ and |