Skip to content

Instantly share code, notes, and snippets.

View skully's full-sized avatar
🤘

Alexandra Vass skully

🤘
View GitHub Profile
$ 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