Home
last modified time | relevance | path

Searched refs:PyBytes_Concat (Results 1 – 10 of 10) 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.rst178 .. c:function:: void PyBytes_Concat(PyObject **bytes, PyObject *newpart)
/external/python/cpython3/PC/
Dpython3.def26 PyBytes_Concat=python37.PyBytes_Concat
/external/python/cpython3/Doc/data/
Drefcounts.dat124 PyBytes_Concat:void:::
125 PyBytes_Concat:PyObject**:bytes:0:
126 PyBytes_Concat:PyObject*:newpart:0:
/external/python/cpython3/Objects/
Dbytesobject.c2915 PyBytes_Concat(PyObject **pv, PyObject *w) in PyBytes_Concat() function
2967 PyBytes_Concat(pv, w); in PyBytes_ConcatAndDel()
/external/python/cpython2/Objects/
Dbytesobject.c2883 PyBytes_Concat(PyObject **pv, PyObject *w) in PyBytes_Concat() function
2935 PyBytes_Concat(pv, w); in PyBytes_ConcatAndDel()
/external/python/cpython3/Modules/_io/
Dbufferedio.c1559 PyBytes_Concat(&data, tmp); in _bufferedreader_read_all()
Dtextio.c1775 PyBytes_Concat(&next_input, input_chunk); in textiowrapper_read_chunk()
/external/python/cpython3/Misc/NEWS.d/
D3.5.0a1.rst535 PyBytes_Concat() now tries to concatenate in-place when the first argument