| 12755 | return __Pyx_PyMethod_New(func, obj, type); |
| 12756 | } |
| 12757 | static PyObject* |
| 12758 | __Pyx_CyFunction_repr(__pyx_CyFunctionObject *op) |
| 12759 | { |
| 12760 | #if PY_MAJOR_VERSION >= 3 |
| 12761 | return PyUnicode_FromFormat("<cyfunction %U at %p>", |
| 12762 | op->func_qualname, (void *)op); |
| 12763 | #else |
| 12764 | return PyString_FromFormat("<cyfunction %s at %p>", |
| 12765 | PyString_AsString(op->func_qualname), (void *)op); |
| 12766 | #endif |
| 12767 | } |
| 12768 | static PyObject * __Pyx_CyFunction_CallMethod(PyObject *func, PyObject *self, PyObject *arg, PyObject *kw) { |
| 12769 | PyCFunctionObject* f = (PyCFunctionObject*)func; |
| 12770 | PyCFunction meth = f->m_ml->ml_meth; |
nothing calls this directly
no outgoing calls
no test coverage detected