Skip to content

Instantly share code, notes, and snippets.

@akrito
Created October 21, 2010 17:21
Show Gist options
  • Save akrito/638897 to your computer and use it in GitHub Desktop.
Save akrito/638897 to your computer and use it in GitHub Desktop.
class C(B):
def __init__(self, *args, **kwargs):
B.__init__(self, *args, **kwargs)
def __init__(self, *args, **kwargs):
super(C, self).__init__(*args, **kwargs)
def __init__(self, *args, **kwargs):
super(type(self), self).__init__(*args, **kwargs)
def __init__(self, *args, **kwargs):
super(self.__class__, self).__init__(*args, **kwargs)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment