mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
15 lines
264 B
Python
15 lines
264 B
Python
class X(object):
|
|
def foo(self):
|
|
pass
|
|
|
|
class A:
|
|
class Inner(X):
|
|
def foo(self):
|
|
<selection>super().foo()</selection>
|
|
|
|
def doStuff(self, foo=True): pass
|
|
|
|
class B(A):
|
|
def otherMethod(self, foo, bar):
|
|
print(foo, bar)
|