Files
openide/python/testData/highlighting/continueInFinallyBlockBefore38.py
Semyon Proshev 34ae8b9265 Move highlighting continue under finally to compatibility inspection (PY-36003)
GitOrigin-RevId: d644848d69b91c4ee05f1342f804e58ea137aac2
2019-08-15 22:02:02 +03:00

5 lines
151 B
Python

while True:
try:
print("a")
finally:
<error descr="Python version 3.7 does not support 'continue' inside 'finally' clause">continue</error>