This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author BTaskaya
Recipients BTaskaya, benjamin.peterson
Date 2020-11-14.10:27:36
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1605349656.21.0.301673967264.issue42355@roundup.psfhosted.org>
In-reply-to
Content
>>> table = symtable.symtable("A = 1", "<string>", "exec")
>>> table.lookup("A")
<symbol 'A'>
>>> table.lookup("A").get_namespace()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/local/lib/python3.10/symtable.py", line 312, in get_namespace
    raise ValueError("name is bound to multiple namespaces")
ValueError: name is bound to multiple namespaces
>>> table.lookup("A").get_namespaces()
()
History
Date User Action Args
2020-11-14 10:27:36BTaskayasetrecipients: + BTaskaya, benjamin.peterson
2020-11-14 10:27:36BTaskayasetmessageid: <1605349656.21.0.301673967264.issue42355@roundup.psfhosted.org>
2020-11-14 10:27:36BTaskayalinkissue42355 messages
2020-11-14 10:27:36BTaskayacreate