Guest User

Untitled

a guest
May 27th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. class Bar():
  2. def hello(self):
  3. print "hello in Bar"
  4.  
  5. class Baz(object):
  6. def hello(self):
  7. print "hello in Baz"
  8.  
  9. class Foo(Bar):
  10. pass
  11.  
  12. Foo.__bases__ = (Baz,)
  13.  
  14. Foo().hello()
Add Comment
Please, Sign In to add comment