Home
last modified time | relevance | path

Searched refs:PyBytes_Concat (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython2/Include/
Dbytesobject.h18 #define PyBytes_Concat PyString_Concat macro
/external/python/cpython3/Include/
Dbytesobject.h61 PyAPI_FUNC(void) PyBytes_Concat(PyObject **, PyObject *);
/external/python/cpython3/Doc/c-api/
Dbytes.rst175 .. c:function:: void PyBytes_Concat(PyObject **bytes, PyObject *newpart)
/external/python/cpython3/PC/
Dpython3.def26 PyBytes_Concat=python36.PyBytes_Concat
/external/python/cpython3/Objects/
Dbytesobject.c2868 PyBytes_Concat(PyObject **pv, PyObject *w) in PyBytes_Concat() function
2920 PyBytes_Concat(pv, w); in PyBytes_ConcatAndDel()
/external/python/cpython3/Modules/_io/
Dbufferedio.c1571 PyBytes_Concat(&data, tmp); in _bufferedreader_read_all()
Dtextio.c1512 PyBytes_Concat(&next_input, input_chunk); in textiowrapper_read_chunk()
/external/python/cpython3/Misc/
DNEWS6873 - Issue #21377: PyBytes_Concat() now tries to concatenate in-place when the