summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2015-05-09 05:07:23 (GMT)
committerRaymond Hettinger <python@rcn.com>2015-05-09 05:07:23 (GMT)
commitbd60e8dece89440ebdc80a19b2217d5ba2515124 (patch)
tree97cf2f7e3802aede1de63eb304cefcf55791077e /Misc
parentdae2ef1cfad60b149370b4012aa48bea2dd27445 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 13dd8c3..ac065f7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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).