Searched defs:__Pyx_PyBytes_Join (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/cython/src/Cython/Utility/
H A DStringTools.c696 #define __Pyx_PyString_Join __Pyx_PyBytes_Join
697 #define __Pyx_PyBaseString_Join(s, v) (PyUnicode_CheckExact(s) ? PyUnicode_Join(s, v) : __Pyx_PyBytes_Join(s, v))
705 #define __Pyx_PyBytes_Join _PyString_Join macro
707 #define __Pyx_PyBytes_Join _PyBytes_Join macro
710 static CYTHON_INLINE PyObject* __Pyx_PyBytes_Join(PyObject* sep, PyObject* values); /*proto*/
717 static CYTHON_INLINE PyObject* __Pyx_PyBytes_Join(PyObject* sep, PyObject* values) { function

Completed in 97 milliseconds