c_int - ¿Cómo convertir ctypes ''c_long a int de Python?
ctypes python linux (3)
Utilice el atributo ''valor'' del objeto c_long.
c_long(1).value
o
i = c_long(1)
print i.value
int(c_long(1))
no funciona.
>>> ctypes.c_long(1).value
1
>>> type(ctypes.c_long(1).value)
<type ''int''>