mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +07:00
7 lines
199 B
Python
7 lines
199 B
Python
def f():
|
|
try:
|
|
raise KeyError("ms")
|
|
except KeyError as e:
|
|
print(e) #pass
|
|
print(<warning descr="Local variable 'e' might be referenced before assignment">e</warning>) #fail
|