16 lines
234 B
Python
16 lines
234 B
Python
class Foo(object):
|
|
def method_a(self, a, b, c, d):
|
|
pass
|
|
|
|
|
|
class Blah(Foo):
|
|
def method_a(self, a, b, c, d):
|
|
pass
|
|
|
|
def method_b(self, a, b, c, e):
|
|
pass
|
|
|
|
|
|
def function_a(a, b, c):
|
|
return (a, b, c)
|