Files
openide/python/testData/quickFixes/PyMoveExceptQuickFixTest/exceptChain.py
Mikhail Golubev de08c2a947 Fix Python tests after the proofreading
GitOrigin-RevId: 2f6eb873d6321ef00d293377ec2c97195f72da21
2020-11-30 22:17:55 +00:00

13 lines
252 B
Python

def foo():
pass
try:
foo()
except NameError:
pass
except Exception:
pass
except <warning descr="'NameError', superclass of the exception class 'UnboundLocalError', has already been caught">UnboundLocalE<caret>rror</warning>:
pass