mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 18:05:27 +07:00
7 lines
127 B
Python
7 lines
127 B
Python
class A:
|
|
def doStuff(self, foo=True): return True
|
|
|
|
class B(A):
|
|
def otherMethod(self, foo, bar):
|
|
print foo, bar
|