mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-23 10:14:50 +07:00
8 lines
92 B
Python
8 lines
92 B
Python
class C:
|
|
def __init__(self):
|
|
self.foo = 42
|
|
|
|
|
|
def method(foo, x):
|
|
print(foo)
|