| 2333 | static const char execute__doc__[] = ""; |
| 2334 | |
| 2335 | static PyObject * |
| 2336 | execute(PyObject *NPY_UNUSED(self), PyObject *args) |
| 2337 | { |
| 2338 | PyObject *a1; |
| 2339 | int is_real, is_forward; |
| 2340 | double fct; |
| 2341 | |
| 2342 | if(!PyArg_ParseTuple(args, "Oiid:execute", &a1, &is_real, &is_forward, &fct)) { |
| 2343 | return NULL; |
| 2344 | } |
| 2345 | |
| 2346 | return is_real ? execute_real(a1, is_forward, fct) |
| 2347 | : execute_complex(a1, is_forward, fct); |
| 2348 | } |
| 2349 | |
| 2350 | /* List of methods defined in the module */ |
| 2351 |
nothing calls this directly
no test coverage detected