mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 03:20:56 +07:00
8 lines
153 B
Python
8 lines
153 B
Python
class C:
|
|
def __init__(self, foo):
|
|
self.foo = foo
|
|
|
|
def me<caret>thod(self, foo):
|
|
self.method(self.foo)
|
|
C(1).method(2)
|