Home
last modified time | relevance | path

Searched refs:wrap_indexargfunc (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Objects/
Dtypeobject.c5527 wrap_indexargfunc(PyObject *self, PyObject *args, void *wrapped) in wrap_indexargfunc() function
6956 SQSLOT("__mul__", sq_repeat, NULL, wrap_indexargfunc,
6958 SQSLOT("__rmul__", sq_repeat, NULL, wrap_indexargfunc,
6972 wrap_indexargfunc,
/external/python/cpython2/Objects/
Dtypeobject.c4531 wrap_indexargfunc(PyObject *self, PyObject *args, void *wrapped) function
6198 SQSLOT("__mul__", sq_repeat, NULL, wrap_indexargfunc,
6200 SQSLOT("__rmul__", sq_repeat, NULL, wrap_indexargfunc,
6226 wrap_indexargfunc, "x.__imul__(y) <==> x*=y"),