Files
python-uncompyle6/test/base_tests/python2.7/test_loops2.py
2015-12-14 09:38:46 -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