You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-02 16:44:46 +08:00
2.6.9 bug: multiple COME_FROMs via "or"/"assert"
This commit is contained in:
@@ -6,3 +6,13 @@ if __name__:
|
||||
pass
|
||||
elif name:
|
||||
pass
|
||||
|
||||
# 2.6.9 transformer.py
|
||||
# Bug in 2.6 is multple COME_FROMs as a result
|
||||
# of the "or" in the "assert"
|
||||
if __name__:
|
||||
pass
|
||||
elif __file__:
|
||||
assert __name__ or __file__
|
||||
else:
|
||||
pass
|
||||
|
Reference in New Issue
Block a user