mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 09:39:37 +07:00
otherwise it's easy to overlook it especially considering that there is also (confusingly) PyAddImportTest
13 lines
215 B
Python
13 lines
215 B
Python
class A:
|
|
def __init__(self, a, b):
|
|
self.a = a
|
|
self.b = b
|
|
|
|
class B(A):
|
|
def __init__(self, a, b):
|
|
A.__init__(self, a, b)
|
|
self.x = None
|
|
|
|
def foo(self):
|
|
return self.x
|