You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 16:59:52 +08:00
10 lines
166 B
Python
10 lines
166 B
Python
if args == ['-']:
|
|
while True:
|
|
try:
|
|
compile(filename, doraise=True)
|
|
except RuntimeError:
|
|
rv = 1
|
|
else:
|
|
rv = 1
|
|
print(rv)
|