Skip to content

Instantly share code, notes, and snippets.

@thrasibule
Created July 17, 2018 20:21
Show Gist options
  • Save thrasibule/df438d2e8f7dde16950cd6af60fede41 to your computer and use it in GitHub Desktop.
Save thrasibule/df438d2e8f7dde16950cd6af60fede41 to your computer and use it in GitHub Desktop.
class A:
def foo(self):
A.bar(self)
def bar(self):
print("from A")
class B(A):
def bar(self):
print("from B")
b = B()
b.foo()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment