Skip to content

Instantly share code, notes, and snippets.

@iivvoo
Created January 21, 2017 14:43
Show Gist options
  • Save iivvoo/38f020e2d113ce9b507cd18a7f88a182 to your computer and use it in GitHub Desktop.
Save iivvoo/38f020e2d113ce9b507cd18a7f88a182 to your computer and use it in GitHub Desktop.
class A:
class B:
def __init__(self):
pass
class C(A.B):
def __init__(self):
super().__init__()
print(A.B(), C())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment