You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

myrebuilder2.py 158B

123456789101112
  1. class A:
  2. def a(self):
  3. return 'b'
  4. class B(A, object):
  5. def b(self):
  6. return 'c'
  7. class Inherit(A):
  8. def a(self):
  9. return 'd'