Home
last modified time | relevance | path

Searched refs:PySequence_GetSlice (Results 1 – 11 of 11) sorted by relevance

/third_party/python/Include/
Dabstract.h673 PyAPI_FUNC(PyObject *) PySequence_GetSlice(PyObject *o, Py_ssize_t i1, Py_ssize_t i2);
/third_party/python/Doc/c-api/
Dsequence.rst59 .. c:function:: PyObject* PySequence_GetSlice(PyObject *o, Py_ssize_t i1, Py_ssize_t i2)
Dtypeobj.rst2212 :c:func:`PySequence_GetSlice`, and has the same signature as
/third_party/python/Doc/data/
Drefcounts.dat1965 PySequence_GetSlice:PyObject*::+1:
1966 PySequence_GetSlice:PyObject*:o:0:
1967 PySequence_GetSlice:Py_ssize_t:i1::
1968 PySequence_GetSlice:Py_ssize_t:i2::
Dstable_abi.dat536 function,PySequence_GetSlice,3.2,
/third_party/python/PC/
Dpython3dll.c499 EXPORT_FUNC(PySequence_GetSlice)
/third_party/python/Misc/
Dstable_abi.txt1153 function PySequence_GetSlice
DHISTORY12174 - Issue #9834: Don't segfault in PySequence_GetSlice, PySequence_SetSlice, or
/third_party/python/Modules/
D_collectionsmodule.c2226 newargs = PySequence_GetSlice(args, 1, n); in defdict_init()
/third_party/python/Objects/
Dabstract.c1911 PySequence_GetSlice(PyObject *s, Py_ssize_t i1, Py_ssize_t i2) in PySequence_GetSlice() function
/third_party/python/Modules/_ctypes/
D_ctypes.c5492 a = PySequence_GetSlice(args, 1, PyTuple_GET_SIZE(args)); in comerror_init()