| 12436 | return 0; |
| 12437 | } |
| 12438 | static PyObject * |
| 12439 | __Pyx_CyFunction_get_self(__pyx_CyFunctionObject *m, CYTHON_UNUSED void *closure) |
| 12440 | { |
| 12441 | PyObject *self; |
| 12442 | self = m->func_closure; |
| 12443 | if (self == NULL) |
| 12444 | self = Py_None; |
| 12445 | Py_INCREF(self); |
| 12446 | return self; |
| 12447 | } |
| 12448 | static PyObject * |
| 12449 | __Pyx_CyFunction_get_dict(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) |
| 12450 | { |
nothing calls this directly
no outgoing calls
no test coverage detected