mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 11:53:49 +07:00
7 lines
131 B
Python
7 lines
131 B
Python
def func():
|
|
value = "not-none"
|
|
|
|
while True:
|
|
<caret>if value is None:
|
|
print("None")
|
|
continue |