You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
13 lines
185 B
Python
13 lines
185 B
Python
if __file__ == ['-']:
|
|
while True:
|
|
try:
|
|
compile(__file__, doraise=True)
|
|
except RuntimeError:
|
|
rv = 1
|
|
else:
|
|
rv = 1
|
|
print(rv)
|
|
|
|
|
|
while 1:pass
|