I can check AST in python file:
python3 -m ast some_file.py
But, when I compile it with nuitka
:
nuitka3 --module some_file.py
I get some_file.so
extension module and when I run
python3 -m ast some_file.so
I get error.
So, question my is:
is there abstract syntax tree (AST) in python extension module?