mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 09:46:39 +07:00
12 lines
164 B
Python
12 lines
164 B
Python
class C(object):
|
|
pass
|
|
|
|
|
|
class D(object):
|
|
def f(self):
|
|
def g(x):
|
|
x = C()
|
|
x.y = 1 #pass
|
|
return x
|
|
return g
|