summaryrefslogtreecommitdiff
path: root/tests/basics/gen_yield_from_executing.py
AgeCommit message (Collapse)Author
2018-05-22py/objgenerator: Protect against reentering a generator.Damien George
Generators that are already executing cannot be reexecuted. This patch puts in a check for such a case. Thanks to @jepler for finding the bug.