Files
python-uncompyle6/test/simple_source/stmts/09_whiletrue_bug.py
2016-05-09 14:44:34 -04:00

10 lines
166 B
Python

if args == ['-']:
while True:
try:
compile(filename, doraise=True)
except RuntimeError:
rv = 1
else:
rv = 1
print(rv)