mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 11:53:49 +07:00
13 lines
204 B
Python
13 lines
204 B
Python
class X(object):
|
|
def foo(self):
|
|
pass
|
|
|
|
class A:
|
|
class Inner(X):
|
|
pass
|
|
def doStuff(self, foo=True): pass
|
|
|
|
class B(A):
|
|
def otherMethod(self, foo, bar):
|
|
print(foo, bar)
|