Skip to content

Instantly share code, notes, and snippets.

@rectalogic
Created December 4, 2014 21:23
Show Gist options
  • Save rectalogic/97d5d7112405986a6be2 to your computer and use it in GitHub Desktop.
Save rectalogic/97d5d7112405986a6be2 to your computer and use it in GitHub Desktop.
>>> class F(object):
... __class__ = list
...
>>> f = F()
>>> f.__class__
<type 'list'>
>>> isinstance(f, F)
True
>>> isinstance(f, list)
True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment