| /* Complex number structure */ | |
| extern "C" { | |
| /* Complex object interface */ | |
| PyAPI_DATA(PyTypeObject) PyComplex_Type; | |
| PyAPI_FUNC(PyObject *) PyComplex_FromDoubles(double real, double imag); | |
| PyAPI_FUNC(double) PyComplex_RealAsDouble(PyObject *op); | |
| PyAPI_FUNC(double) PyComplex_ImagAsDouble(PyObject *op); | |
| } | |