Home
last modified time | relevance | path

Searched refs:repeatfunc (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython3/Objects/
Dabstract.c970 sequence_repeat(ssizeargfunc repeatfunc, PyObject *seq, PyObject *n) in sequence_repeat() argument
982 return (*repeatfunc)(seq, count); in sequence_repeat()
/external/python/cpython2/Doc/library/
Ditertools.rst737 def repeatfunc(func, times=None, *args):
740 Example: repeatfunc(random.random)
/external/python/cpython3/Doc/library/
Ditertools.rst746 def repeatfunc(func, times=None, *args):
749 Example: repeatfunc(random.random)
/external/python/cpython2/Objects/
Dabstract.c1198 sequence_repeat(ssizeargfunc repeatfunc, PyObject *seq, PyObject *n) argument
1210 return (*repeatfunc)(seq, count);