blob: 41027c70f616d0f24694229bf2246f870d63b1f1 [file] [log] [blame]
class A(object):
def m1(self):
print(1)
class B(A):
def m1(self):
print(2)