Files
python-uncompyle6/test/test_loops2.py
2012-09-21 17:01:52 +02:00

11 lines
197 B
Python
Executable File

# This is a seperate test pattern, since 'continue' within 'try'
# was not allowed till Python 2.1
for term in args:
try:
print
continue
print
except:
pass