Skip to content

Instantly share code, notes, and snippets.

@robsyme
Created May 6, 2010 07:53
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 robsyme/92c0cf470533f4df5bbb to your computer and use it in GitHub Desktop.
Save robsyme/92c0cf470533f4df5bbb to your computer and use it in GitHub Desktop.
Python behaviour
p = 256
q = 256
p is q #=> True
p = 257
q = 257
p is q #=> False
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment