Storing a C pointer in a Python class instance

lallous lallous at lgwm.org
Tue Sep 29 04:27:22 EDT 2009


Hello

>From my C extension module I want to store a C pointer in a given PyObject.

The only way I figure how to do it is to use Py_BuildValues and store the 
poiner casted to Py_ssize_t, thus:

Py_BuildValues("n", (Py_ssize_t)my_ptr)

Can it be done differently?

Regards,
Elias 




More information about the Python-list mailing list