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.

classification
Title: command line interface of symtable module is broken
Type: behavior Stage: patch review
Components: Library (Lib) Versions: Python 3.10
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: BTaskaya, benjamin.peterson, pablogsal
Priority: normal Keywords: patch

Created on 2020-06-09 10:20 by BTaskaya, last changed 2022-04-11 14:59 by admin.

Pull Requests
URL Status Linked Edit
PR 20757 open BTaskaya, 2020-06-09 10:22
Messages (1)
msg371088 - (view) Author: Batuhan Taskaya (BTaskaya) * (Python committer) Date: 2020-06-09 10:20
(.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
2022-04-11 14:59:32adminsetgithub: 85098
2020-06-09 10:40:22BTaskayasetnosy: + benjamin.peterson, pablogsal
2020-06-09 10:22:22BTaskayasetkeywords: + patch
stage: needs patch -> patch review
pull_requests: + pull_request19956
2020-06-09 10:20:39BTaskayacreate