E
Emanuel Landeholm
Hello!
I'm a Py neophyte trying to code an extension module in C. I would like
to know how, canonically, to remove a certain PyObject from a PyList,
from C. The solution I have come up with so far involves iterating
through the PyList keeping a counter, and then using
PyList_DelItem(counter) on the counter when the iter item == the
PyObject. But this is kind of messy. I'm sure there's a cleaner way to
do it?
TIA,
Emanuel
I'm a Py neophyte trying to code an extension module in C. I would like
to know how, canonically, to remove a certain PyObject from a PyList,
from C. The solution I have come up with so far involves iterating
through the PyList keeping a counter, and then using
PyList_DelItem(counter) on the counter when the iter item == the
PyObject. But this is kind of messy. I'm sure there's a cleaner way to
do it?
TIA,
Emanuel