Skip to content

Instantly share code, notes, and snippets.

@superbobry
Created November 13, 2011 13:37
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 superbobry/1362119 to your computer and use it in GitHub Desktop.
Save superbobry/1362119 to your computer and use it in GitHub Desktop.
Small ints in PyPy and CPython
# PyPy
>>>> 0 is 0
True
>>>> x = 0
>>>> x is 0
False
# CPython
>>> 0 is 0
True
>>> x = 0
>>> x is 0
True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment