Skip to content

Instantly share code, notes, and snippets.

@hoov
Created April 11, 2017 13:31
Show Gist options
  • Save hoov/581306423dae73d8cbb8e0916faf7826 to your computer and use it in GitHub Desktop.
Save hoov/581306423dae73d8cbb8e0916faf7826 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
class A(object):
def __init__(self):
print("A")
class B(object):
def __init__(self):
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