commit | 099a78fe6d0a4c20126497940529d2b1fd41c5de | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Wed Mar 07 17:57:04 2012 -0600 |
committer | Benjamin Peterson <benjamin@python.org> | Wed Mar 07 17:57:04 2012 -0600 |
tree | 2a5940815471ae87cf7baf8830253d7db8a379da | |
parent | 33d21a24fa3da625e20eb4d543eb1f9f6392f96c [diff] [blame] |
make delegating generators say they running (closes #14220)
diff --git a/Misc/NEWS b/Misc/NEWS index 7d64411..a8769af 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -13,6 +13,9 @@ - Issue #14205: dict lookup raises a RuntimeError if the dict is modified during a lookup. +- Issue #14220: When a generator is delegating to another iterator with the + yield from syntax, it needs to have its ``gi_running`` flag set to True. + Library -------