mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
9 lines
167 B
Python
9 lines
167 B
Python
class C1(object):
|
|
def method1(self):
|
|
pass
|
|
|
|
class Test(object):
|
|
def __init__(self, x):
|
|
self.x = x
|
|
self.x = C1()
|
|
self.x.method1() |