Forgot to check in the allowed_syntax file.

This commit is contained in:
Dave Halter
2017-07-19 23:35:16 +02:00
parent ff04517895
commit 9b8418db3f

View File

@@ -0,0 +1,11 @@
"""
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