Can't call method in Python C extension
I'm working on making my first Python C extension, which defines a few functions and custom types. The strange thing is that the custom types are working, but not the regular functions. The top-level MyModule.c file looks like this: static PyMethodDef MyModule_methods[] = { {"doStuff", MyModule_doStuff, METH_VARARGS, ""}, {NUL...