-
Notifications
You must be signed in to change notification settings - Fork 670
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
Processing condition incorrectly #468
Comments
Simpler code: a = True
b = False
if a and not b:
print("In if")
else:
print("In false") decompile to # Source Generated with Decompyle++
# File: sample.cpython-312.pyc (Python 3.12)
a = True
b = False
if not a and b:
print('In if')
return None
print('In false') ASM
|
Repository owner
deleted a comment from
turiaasoli
Apr 15, 2024
Repository owner
deleted a comment from
turiaasoli
Apr 15, 2024
Repository owner
deleted a comment from
turiaasoli
Apr 15, 2024
Repository owner
deleted a comment from
turiaasoli
Apr 15, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Test under Python 3.10
Original file (sample.py)
// Decompile with pycdc
Output file
First, the condition is incorrect.
Second the
ext_method2
becomeNone
Disassmeble with pycdas
The text was updated successfully, but these errors were encountered: