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
Date 2020-06-09.10:20:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1591698039.58.0.381389763759.issue40926@roundup.psfhosted.org>
In-reply-to
Content
(.venv) (Python 3.10.0a0) [  1:11ÖS ]  [ isidentical@x200:~ ]
 $ cat t.py
import x
a = 1
print(x)

(.venv) (Python 3.10.0a0) [  1:11ÖS ]  [ isidentical@x200:~ ]
 $ python -m symtable t.py
<symbol '_symtable'> True False
<symbol 'USE'> True False
<symbol 'DEF_GLOBAL'> True False
<symbol 'DEF_NONLOCAL'> True False
<symbol 'DEF_LOCAL'> True False
...

It can clearly seen that the initial argument [t.py] is completely ignored, and this script prints out the symtable.py itself. This is because the script uses argv[0] (itself) instead of argv[1] (the first argument). I also find this output quite poor since we don't know what these boolean values are;

<symbol 'DEF_LOCAL'> True False

The fix I had in my mind is printing all properties instead of 2 boolean values

 $ ./cpython/cpython/python -m symtable t.py
<symbol 'x'> ==> {'local', 'imported', 'referenced'}
<symbol 'a'> ==> {'local', 'assigned'}
<symbol 'print'> ==> {'referenced', 'global'}
History
Date User Action Args
2020-06-09 10:20:39BTaskayasetrecipients: + BTaskaya
2020-06-09 10:20:39BTaskayasetmessageid: <1591698039.58.0.381389763759.issue40926@roundup.psfhosted.org>
2020-06-09 10:20:39BTaskayalinkissue40926 messages
2020-06-09 10:20:39BTaskayacreate