mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
9 lines
180 B
Python
9 lines
180 B
Python
class A(object):
|
|
@staticmethod
|
|
def __new__(cls, *more):
|
|
return super(A, cls).__new__(cls, *more)
|
|
|
|
|
|
class B(A):
|
|
def test_method(self):
|
|
self.test_method() |