mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 11:53:49 +07:00
9 lines
146 B
Python
9 lines
146 B
Python
def func():
|
|
value = "not-none"
|
|
|
|
if value is not None:
|
|
print(value)
|
|
raise RuntimeError()
|
|
|
|
print("None")
|
|
return True |