-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Add support for dis module #367
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
(I have for comparison, though, here is the same function in CPython 3.6.8 (same dis module)
|
I really should have linked to this issue with my pull requests: #512 and #555 add the beginnings of a rust implementation of the dis module, which is what you're seeing there. Only dis and disassemble are implemented. (And dis doesn't support everything it should yet.) As discussed in #445, the internals of the VM are too different to make compatibility with the python implementation of dis sensible at the moment. This is still open as I'm still planning on fleshing out the dis module a bit more. |
is this still open? |
basic one is implemented |
Lack of this makes compiler debugging more painful than it should be.
Will need us to make the code object work fully.
The text was updated successfully, but these errors were encountered: