Files
python-uncompyle6/test/base-tests/python2/test_loops2.py

11 lines
197 B
Python

# 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