mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
9 lines
169 B
Python
9 lines
169 B
Python
class C1(object):
|
|
def method1(self):
|
|
pass
|
|
|
|
class Test(object):
|
|
def __init__(self, x):
|
|
self.x = x
|
|
self.x = C1()
|
|
self.x.meth<caret> |