Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save timthelion/520c9122dc563e76ab58e0830e309271 to your computer and use it in GitHub Desktop.

Select an option

Save timthelion/520c9122dc563e76ab58e0830e309271 to your computer and use it in GitHub Desktop.
>>> class MyBase:
... def __init_subclass__(cls, **kwargs):
... print("Subclass {0!s} created".format(cls))
...
>>> class MyChildA(MyBase):
... pass
...
Subclass <class '__main__.MyChildA'> created
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment