#include "parts.h" #include "util.h" static PyObject * complex_check(PyObject *Py_UNUSED(module), PyObject *obj) { … } static PyObject * complex_checkexact(PyObject *Py_UNUSED(module), PyObject *obj) { … } static PyObject * complex_fromdoubles(PyObject *Py_UNUSED(module), PyObject *args) { … } static PyObject * complex_realasdouble(PyObject *Py_UNUSED(module), PyObject *obj) { … } static PyObject * complex_imagasdouble(PyObject *Py_UNUSED(module), PyObject *obj) { … } static PyMethodDef test_methods[] = …; int _PyTestLimitedCAPI_Init_Complex(PyObject *mod) { … }