Files
parso/test/normalizer_issue_files/allowed_syntax.py
2017-07-19 23:52:41 +02:00

17 lines
304 B
Python

"""
Some syntax errors are a bit complicated and need exact checking. Here we
gather some of the potentially dangerous ones.
"""
for x in [1]:
try:
continue # Only the other continue and pass is an error.
finally:
#: E901
continue
for x in [1]:
break
continue