Skip to content

Instantly share code, notes, and snippets.

@hoov
Created April 11, 2017 13:39
Show Gist options
  • Save hoov/cb78b412fd245fbaece6d601a4c482e4 to your computer and use it in GitHub Desktop.
Save hoov/cb78b412fd245fbaece6d601a4c482e4 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
class A(object):
def __init__(self):
super(A, self).__init__()
print("A")
class B(object):
def __init__(self):
super(B, self).__init__()
print("B")
class C(A, B):
def __init__(self):
super(C, self).__init__()
print("C")
C()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment