We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Python bytecode version: 2.7, compiled with 2.7.10 uncompyle6 71e7120 on Python 3.6.4
original code:
def func(a, b, c): while a: if b: continue return False return True
uncompyle6 output:
def func(a, b, c): while 1: if a: if b: pass continue return False return True
The output has different behavior compared to original code.
The text was updated successfully, but these errors were encountered:
Commit 5039a71 now addresses this. https://github.com/rocky/python-uncompyle6/wiki/Fixing-Issue-%23151 gives details on how to find and fix the bug.
Sorry, something went wrong.
No branches or pull requests
Python bytecode version: 2.7, compiled with 2.7.10
uncompyle6 71e7120 on Python 3.6.4
original code:
uncompyle6 output:
The output has different behavior compared to original code.
The text was updated successfully, but these errors were encountered: