.so

Is there abstract syntax tree (AST) in python extension module (files with suffix .so)?

Is there abstract syntax tree (AST) in python extension module (files with suffix .so)? Question: 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 …

Total answers: 1