Created
April 11, 2017 13:39
-
-
Save hoov/cb78b412fd245fbaece6d601a4c482e4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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