mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-23 10:14:50 +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
|