mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 21:30:23 +07:00
GitOrigin-RevId: fd44fa8ca8a0f3eed2b710a65225979569023d3f
7 lines
120 B
Python
7 lines
120 B
Python
class A:
|
|
def doStuff(self, foo=True): pass
|
|
|
|
class B(A):
|
|
def otherMethod(self, foo, bar):
|
|
print foo, bar
|