Home
last modified time | relevance | path

Searched refs:PyTuple_GetSlice (Results 1 – 16 of 16) sorted by relevance

/third_party/python/Include/
Dtupleobject.h34 PyAPI_FUNC(PyObject *) PyTuple_GetSlice(PyObject *, Py_ssize_t, Py_ssize_t);
/third_party/python/Modules/
Datexitmodule.c170 callback->args = PyTuple_GetSlice(args, 1, PyTuple_GET_SIZE(args)); in atexit_register()
D_operator.c1518 mc->args = PyTuple_GetSlice(args, 1, PyTuple_GET_SIZE(args)); in methodcaller_new()
D_functoolsmodule.c102 nargs = PyTuple_GetSlice(args, 1, PY_SSIZE_T_MAX); in partial_new()
D_pickle.c4176 newargtup = PyTuple_GetSlice(argtup, 1, PyTuple_GET_SIZE(argtup)); in save_reduce()
/third_party/python/Doc/c-api/
Dtuple.rst68 .. c:function:: PyObject* PyTuple_GetSlice(PyObject *p, Py_ssize_t low, Py_ssize_t high)
/third_party/python/Modules/_io/
Dstringio.c865 initarg = PyTuple_GetSlice(state, 0, 2); in stringio_setstate()
/third_party/python/Doc/data/
Drefcounts.dat2255 PyTuple_GetSlice:PyObject*::+1:
2256 PyTuple_GetSlice:PyObject*:p:0:
2257 PyTuple_GetSlice:Py_ssize_t:low::
2258 PyTuple_GetSlice:Py_ssize_t:high::
Dstable_abi.dat630 function,PyTuple_GetSlice,3.2,
/third_party/python/Objects/
Dtupleobject.c498 PyTuple_GetSlice(PyObject *op, Py_ssize_t i, Py_ssize_t j) in PyTuple_GetSlice() function
Ddescrobject.c548 args = PyTuple_GetSlice(args, 1, argc); in wrapperdescr_call()
Dexceptions.c914 PyObject *subslice = PyTuple_GetSlice(args, 0, 2); in oserror_init()
Dtypeobject.c2453 args = PyTuple_GetSlice(args, 0, 0); in type_init()
7006 args = PyTuple_GetSlice(args, 1, PyTuple_GET_SIZE(args)); in tp_new_wrapper()
/third_party/python/PC/
Dpython3dll.c585 EXPORT_FUNC(PyTuple_GetSlice)
/third_party/python/Misc/
Dstable_abi.txt1268 function PyTuple_GetSlice
/third_party/python/Modules/_ctypes/
D_ctypes.c3899 return PyTuple_GetSlice(inargs, 1, PyTuple_GET_SIZE(inargs)); in _build_callargs()