Home
last modified time | relevance | path

Searched refs:PyUnicode_Join (Results 1 – 18 of 18) sorted by relevance

/third_party/python/Objects/
Daccu.c12 ret = PyUnicode_Join(sep, lst); in join_list_unicode()
Dnamespaceobject.c128 pairsrepr = PyUnicode_Join(separator, pairs); in namespace_repr()
Dunicodeobject.c10366 PyUnicode_Join(PyObject *separator, PyObject *seq) in PyUnicode_Join() function
12761 return PyUnicode_Join(self, iterable); in unicode_join()
Dtypeobject.c4487 joined = PyUnicode_Join(comma, sorted_methods); in object_new()
/third_party/python/Include/
Dunicodeobject.h922 PyAPI_FUNC(PyObject*) PyUnicode_Join(
/third_party/python/Modules/
D_operator.c1364 return PyUnicode_Join(*attrsep, attr); in dotjoinattr()
1636 joinedargreprs = PyUnicode_Join(sep, argreprs); in methodcaller_repr()
D_sre.c1205 item = PyUnicode_Join(joiner, list); in pattern_subx()
1362 flags_result = PyUnicode_Join(sep, flag_items); in pattern_repr()
D_asynciomodule.c1401 PyObject *rinfo_s = PyUnicode_Join(NULL, rinfo); in FutureObj_repr()
D_elementtree.c160 result = PyUnicode_Join(joiner, list); in list_join()
/third_party/python/Doc/data/
Dstable_abi.dat749 function,PyUnicode_Join,3.2,
Drefcounts.dat2673 PyUnicode_Join:PyObject*::+1:
2674 PyUnicode_Join:PyObject*:separator:0:
2675 PyUnicode_Join:PyObject*:seq:0:
/third_party/python/PC/
Dpython3dll.c674 EXPORT_FUNC(PyUnicode_Join)
/third_party/python/Modules/_io/
Dtextio.c2018 Py_XSETREF(result, PyUnicode_Join(_PyIO_empty_str, chunks)); in _io_TextIOWrapper_read_impl()
2283 line = PyUnicode_Join(_PyIO_empty_str, chunks); in _textiowrapper_readline()
/third_party/python/Misc/
Dstable_abi.txt1444 function PyUnicode_Join
DHISTORY16465 - Issue #3460: PyUnicode_Join() implementation is 10% to 80% faster thanks
/third_party/python/Python/
Dceval.c4594 tmp = PyUnicode_Join(comma, names); in format_missing()
4754 PyObject* error_names = PyUnicode_Join(comma, posonly_names); in positional_only_passed_as_keyword()
/third_party/python/Doc/c-api/
Dunicode.rst1612 .. c:function:: PyObject* PyUnicode_Join(PyObject *separator, PyObject *seq)
/third_party/python/Doc/whatsnew/
D3.3.rst2479 :c:func:`PyUnicode_Concat()`, :c:func:`PyUnicode_Join` or