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
| $ python | |
| Python 2.7.12 (default, Nov 19 2016, 06:48:10) | |
| [GCC 5.4.0 20160609] on linux2 | |
| Type "help", "copyright", "credits" or "license" for more information. | |
| >>> import sys | |
| >>> import ctypes | |
| >>> pyint_p = ctypes.POINTER(ctypes.c_byte*sys.getsizeof(5)) | |
| >>> five = ctypes.cast(id(5), pyint_p) | |
| >>> five.contents[five.contents[:].index(5)] = 4 |