Home
last modified time | relevance | path

Searched refs:sq_concat (Results 1 - 3 of 3) sorted by relevance

/third_party/python/Objects/
H A Dabstract.c1080 if (m && m->sq_concat) { in PyNumber_Add()
1081 result = (*m->sq_concat)(v, w); in PyNumber_Add()
1269 func = m->sq_concat; in PyNumber_InPlaceAdd()
1761 if (m && m->sq_concat) { in PySequence_Concat()
1762 PyObject *res = m->sq_concat(s, o); in PySequence_Concat()
1768 have an nb_add slot, not an sq_concat slot. So we fall back in PySequence_Concat()
1823 if (m && m->sq_concat) { in PySequence_InPlaceConcat()
1824 PyObject *res = m->sq_concat(s, o); in PySequence_InPlaceConcat()
H A Dtypeobject.c5932 COPYSEQ(sq_concat); in inherit_slots()
8197 /* Heap types defining __add__/__mul__ have sq_concat/sq_repeat == NULL.
8202 SQSLOT("__add__", sq_concat, NULL, wrap_binaryfunc,
8313 * type->tp_as_sequence->sq_concat by looking up special methods like
/third_party/python/Include/cpython/
H A Dobject.h110 binaryfunc sq_concat; member

Completed in 16 milliseconds