Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cf0f17 commit ff1f852Copy full SHA for ff1f852
1 file changed
Python/compile.c
@@ -4595,6 +4595,12 @@ symtable_init()
4595
if (st == NULL)
4596
return NULL;
4597
st->st_pass = 1;
4598
+
4599
+ /* XXX Tim: Jeremy deleted the next line and everything went to hell.
4600
+ XXX It should probably get fixed by getting rid of st_nested_scopes
4601
+ XXX entirely. */
4602
+ st->st_nested_scopes = 1;
4603
4604
st->st_filename = NULL;
4605
if ((st->st_stack = PyList_New(0)) == NULL)
4606
goto fail;
0 commit comments