Last active
February 21, 2018 20:29
-
-
Save kissgyorgy/618ad2393379367bb4e068050a609dad to your computer and use it in GitHub Desktop.
Python: CPython integer optimization
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> import copy | |
>>> copy.deepcopy(257) is copy.deepcopy(257) | |
True | |
>>> a = copy.deepcopy(257) | |
>>> b = copy.deepcopy(257) | |
>>> a is b | |
False | |
>>> 257 is 257 | |
True | |
>>> a = 257 | |
>>> b = 257 | |
>>> a is b | |
False | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment