How would I dynamically add methods to my module through the C-API? I have many functions I need to register, and they are not in the same array. I assume I can initialize the module with a NULL method table, as the documentation says that's possible.
PyObject *mymod = Py_InitModule("my", NULL);
What is the name of a function to add my methods one at a time.