| 12375 | return 0; |
| 12376 | } |
| 12377 | static PyObject * |
| 12378 | __Pyx_CyFunction_get_name(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) |
| 12379 | { |
| 12380 | if (unlikely(op->func_name == NULL)) { |
| 12381 | #if PY_MAJOR_VERSION >= 3 |
| 12382 | op->func_name = PyUnicode_InternFromString(op->func.m_ml->ml_name); |
| 12383 | #else |
| 12384 | op->func_name = PyString_InternFromString(op->func.m_ml->ml_name); |
| 12385 | #endif |
| 12386 | if (unlikely(op->func_name == NULL)) |
| 12387 | return NULL; |
| 12388 | } |
| 12389 | Py_INCREF(op->func_name); |
| 12390 | return op->func_name; |
| 12391 | } |
| 12392 | static int |
| 12393 | __Pyx_CyFunction_set_name(__pyx_CyFunctionObject *op, PyObject *value, CYTHON_UNUSED void *context) |
| 12394 | { |
nothing calls this directly
no outgoing calls
no test coverage detected