Files
python-uncompyle6/test/base-tests/python2.7/test_loops2.py
2015-12-13 05:23:28 -05:00

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