| 12489 | return Py_None; |
| 12490 | } |
| 12491 | static PyObject * |
| 12492 | __Pyx_CyFunction_get_code(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) |
| 12493 | { |
| 12494 | PyObject* result = (op->func_code) ? op->func_code : Py_None; |
| 12495 | Py_INCREF(result); |
| 12496 | return result; |
| 12497 | } |
| 12498 | static int |
| 12499 | __Pyx_CyFunction_init_defaults(__pyx_CyFunctionObject *op) { |
| 12500 | int result = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected