6 ms·
Pointers.py: Bringing the hell of pointers to Python
- compressedgas 5y agoPython already has this 'hell of pointers' in the ctypes module. Where `to_ptr(x)` is: ptr = ctypes.pointer(ctypes.py_object(x)) And `ptr.dereference()` is: ptr.contents.value