Commit e16c7aee authored by Guido van Rossum's avatar Guido van Rossum

jcompile(): inherit the CO_GENERATOR_ALLOWED flag from the 'base'

compiling struct.
parent a1b3a474
...@@ -3945,6 +3945,7 @@ jcompile(node *n, char *filename, struct compiling *base, ...@@ -3945,6 +3945,7 @@ jcompile(node *n, char *filename, struct compiling *base,
if (base->c_nested if (base->c_nested
|| (sc.c_symtable->st_cur->ste_type == TYPE_FUNCTION)) || (sc.c_symtable->st_cur->ste_type == TYPE_FUNCTION))
sc.c_nested = 1; sc.c_nested = 1;
sc.c_flags |= base->c_flags & CO_GENERATOR_ALLOWED;
} else { } else {
sc.c_private = NULL; sc.c_private = NULL;
sc.c_future = PyNode_Future(n, filename); sc.c_future = PyNode_Future(n, filename);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment