Skip to content

Instantly share code, notes, and snippets.

@zzzeek
Created March 8, 2014 18:50
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 zzzeek/9436950 to your computer and use it in GitHub Desktop.
Save zzzeek/9436950 to your computer and use it in GitHub Desktop.
Python 2.7
>>> class O(object):
... pass
...
>>> O.__init__ is object.__init__
True
Python 3.4
>>> class O(object):
... pass
...
>>> O.__init__ is object.__init__
True
Pypy 2.3.0:
>>>> class O(object):
.... pass
....
>>>> O.__init__ is object.__init__
False
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment