stacktach-simport/tests/localmodule.py
2014-03-09 15:57:18 -03:00

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)