Skip to content

Instantly share code, notes, and snippets.

@gergob
Created December 9, 2014 19:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gergob/33042bb5cd73925f88d8 to your computer and use it in GitHub Desktop.
Save gergob/33042bb5cd73925f88d8 to your computer and use it in GitHub Desktop.
MRO of SmartPhone class
>>> SmartPhone.mro()
[<class 'SmartPhone'>, <class 'Phone'>, <class 'Computer'>, <class 'object'>]
>>> SmartPhone.__mro__
(<class 'SmartPhone'>, <class 'Phone'>, <class 'Computer'>, <class 'object'>)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment