diff options
author | Raymond Hettinger <python@rcn.com> | 2015-05-09 05:07:23 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2015-05-09 05:07:23 (GMT) |
commit | bd60e8dece89440ebdc80a19b2217d5ba2515124 (patch) | |
tree | 97cf2f7e3802aede1de63eb304cefcf55791077e /Misc | |
parent | dae2ef1cfad60b149370b4012aa48bea2dd27445 (diff) | |
download | cpython-bd60e8dece89440ebdc80a19b2217d5ba2515124.zip cpython-bd60e8dece89440ebdc80a19b2217d5ba2515124.tar.gz cpython-bd60e8dece89440ebdc80a19b2217d5ba2515124.tar.bz2 |
Issue #24018: Add a collections.Generator abstract base class.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -39,6 +39,9 @@ Library - Issue #24134: assertRaises(), assertRaisesRegex(), assertWarns() and assertWarnsRegex() checks are not longer successful if the callable is None. +- Issue #24018: Add a collections.Generator abstract base class. + Contributed by Stefan Behnel. + - Issue #23880: Tkinter's getint() and getdouble() now support Tcl_Obj. Tkinter's getdouble() now supports any numbers (in particular int). |