mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-02 22:51:01 +07:00
9 lines
144 B
Python
9 lines
144 B
Python
foo = 'global'
|
|
|
|
def method(foo):
|
|
class A:
|
|
print(foo)
|
|
# <ref>
|
|
def foo(self):
|
|
pass
|
|
print(foo) |