mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-15 20:26:04 +07:00
12 lines
184 B
Python
12 lines
184 B
Python
class A:
|
|
def __init__(self, a, b):
|
|
self.a = a
|
|
self.b = b
|
|
|
|
class B(A):
|
|
def __init__(self, a, b):
|
|
self.x = None
|
|
|
|
def foo(self):
|
|
return self.x
|