Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
Darraymodule.c2196 static PyTypeObject PyArrayIter_Type; variable
2198 #define PyArrayIter_Check(op) PyObject_TypeCheck(op, &PyArrayIter_Type)
2210 it = PyObject_GC_New(arrayiterobject, &PyArrayIter_Type); in array_iter()
2246 static PyTypeObject PyArrayIter_Type = { variable
2293 Py_TYPE(&PyArrayIter_Type) = &PyType_Type; in initarray()
/external/python/cpython3/Modules/
Darraymodule.c58 static PyTypeObject PyArrayIter_Type; variable
60 #define PyArrayIter_Check(op) PyObject_TypeCheck(op, &PyArrayIter_Type)
2851 it = PyObject_GC_New(arrayiterobject, &PyArrayIter_Type); in array_iter()
2946 static PyTypeObject PyArrayIter_Type = { variable
2996 Py_SET_TYPE(&PyArrayIter_Type, &PyType_Type); in array_modexec()