| 12630 | {0, 0, 0, 0, 0} |
| 12631 | }; |
| 12632 | static PyObject * |
| 12633 | __Pyx_CyFunction_reduce(__pyx_CyFunctionObject *m, CYTHON_UNUSED PyObject *args) |
| 12634 | { |
| 12635 | #if PY_MAJOR_VERSION >= 3 |
| 12636 | return PyUnicode_FromString(m->func.m_ml->ml_name); |
| 12637 | #else |
| 12638 | return PyString_FromString(m->func.m_ml->ml_name); |
| 12639 | #endif |
| 12640 | } |
| 12641 | static PyMethodDef __pyx_CyFunction_methods[] = { |
| 12642 | {"__reduce__", (PyCFunction)__Pyx_CyFunction_reduce, METH_VARARGS, 0}, |
| 12643 | {0, 0, 0, 0} |
nothing calls this directly
no outgoing calls
no test coverage detected