| 693 | #define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s) |
| 694 | #define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s) |
| 695 | static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u) { |
| 696 | const Py_UNICODE *u_end = u; |
| 697 | while (*u_end++) ; |
| 698 | return (size_t)(u_end - u - 1); |
| 699 | } |
| 700 | #define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u)) |
| 701 | #define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode |
| 702 | #define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode |
nothing calls this directly
no outgoing calls
no test coverage detected