Hi, I have a Python C module, and comments between the end of the arguments and the opening brace seem to screw up its ability recognize the function name:
static PyObject * tableio_writeTable(PyObject *self, PyObject *args) /* args: (string) */ { / * function body */ }
I'm not sure how to modify the module to get this to work. Putting that comment somewhere else makes it work fine, but I'd like to avoid having to go through the code and editing every function definition.
Can someone offer a hint as to how to fix the module?
TIA, Dave