mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 06:05:01 +07:00
PY-22042 Gutter icon for running main clause
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
def f():
|
||||
def g():
|
||||
pass
|
||||
|
||||
if __name__ == '__main__':
|
||||
g()
|
||||
print(1)
|
||||
|
||||
|
||||
f()
|
||||
@@ -0,0 +1,5 @@
|
||||
def f():
|
||||
print(1)
|
||||
|
||||
if __name__ == "__main__":
|
||||
f()
|
||||
Reference in New Issue
Block a user