You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
12 lines
162 B
Python
12 lines
162 B
Python
# From 2.6.9 cmd.py
|
|
try:
|
|
if __file__:
|
|
x = 2
|
|
x = 3
|
|
finally:
|
|
if x and __file__:
|
|
try:
|
|
x = 1
|
|
except:
|
|
pass
|