Skip to content

Instantly share code, notes, and snippets.

@uoxiu
Created July 19, 2019 13:20
Show Gist options
  • Save uoxiu/eb74ec9eceea3eff06e285a300bc53dc to your computer and use it in GitHub Desktop.
Save uoxiu/eb74ec9eceea3eff06e285a300bc53dc to your computer and use it in GitHub Desktop.
class A(object):
def x(self):
print('A')
class B(A):
def x(self):
super(B, self).x()
print('B')
class C(B):
def x(self):
super(B, self).x()
print('C')
C().x()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment