mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
13 lines
203 B
Python
13 lines
203 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
|