Created
June 27, 2019 09:19
-
-
Save timthelion/520c9122dc563e76ab58e0830e309271 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| >>> 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