-
Notifications
You must be signed in to change notification settings - Fork 1.3k
./rustpython -m dis
: No code object available for dis
#2889
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
See also #367 |
This is because dis is implemented as a native module, not using cpython's dis.py that's specific to their bytecode format. |
I think we can move our native dis module to |
I expect |
@youknowone thanks for #3469 , for me it is working like
|
Feature
dis
: Disassembler for Python bytecode.I want to should compiled bytecode for a
.py
script, and I got this error:In cpython, most of the std module will be pre-compiled during build.
Python Documentation
https://docs.python.org/3.8/library/dis.html
The text was updated successfully, but these errors were encountered: