Message365845
That fix is not correct. For instance consider:
>>> code2 = """\
... def foo():
... x = 42
... def bar():
... return -1
... """
>>> top.get_children()[0]
<Function SymbolTable for foo in ?>
>>> top = symtable.symtable(code2, "?", "exec")
>>> top.get_children()[0].lookup('x')._Symbol__scope == symtable.LOCAL
True
but if we return x from bar:
>>> code = """\
... def foo():
... x = 42
... def bar():
... return x
... """
>>> import symtable
>>> top = symtable.symtable(code, "?", "exec")
>>> top.get_children()[0].lookup('x')._Symbol__scope == symtable.LOCAL
False |
|
Date |
User |
Action |
Args |
2020-04-06 10:07:07 | pablogsal | set | recipients:
+ pablogsal, coproc |
2020-04-06 10:07:07 | pablogsal | set | messageid: <1586167627.29.0.39456036631.issue40196@roundup.psfhosted.org> |
2020-04-06 10:07:07 | pablogsal | link | issue40196 messages |
2020-04-06 10:07:07 | pablogsal | create | |
|