blob: 0402b8ecc9588f1de1742e63d19842687d7bfdf3 [file] [log] [blame]
#include "parts.h"
#include "util.h"
static PyMethodDef test_methods[] = {
{NULL},
};
int
_PyTestCapi_Init_Complex(PyObject *mod)
{
if (PyModule_AddFunctions(mod, test_methods) < 0) {
return -1;
}
return 0;
}