Pregunta

say I have a python object "o" with a method "m()", and I want to pass it as:

PyObject *f(PyObject *self, PyObject *args)
{
  PyObject *o;
  PyArg_ParseTuple(args, "O", &o);
  //o.m();
}

Apparently the last commented line doesn't compile, and I wonder whether there is a way I can achieve this.

¿Fue útil?

Solución

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top