How to pass a python list to a C extension function and append some values?

1.1k Views Asked by At

Say I have a python list:

l=[[1,2],[3,4]]

I want to pass it to the following C extension:

PyObject *acc(PyObject *self, PyObject *args)
{
PyObject * l;
PyArg_ParseTuple(args, "O", &l);
//l.append([5,6]
}

I just wonder how to modify the above function to achieve what I want to do in the comment line.

1

There are 1 best solutions below

0
On BEST ANSWER

Err, that would be PyList_Append()...