Searched refs:IterType (Results 1 – 1 of 1) sorted by relevance
1431 static PyTypeObject IterType; variable1458 self = PyObject_GC_New(IterObject, &IterType); in IterNew()6475 CLEAR_FIELD(IterType); in init_structs()6476 IterType.tp_name = "vim.iter"; in init_structs()6477 IterType.tp_basicsize = sizeof(IterObject); in init_structs()6479 IterType.tp_doc = "generic iterator object"; in init_structs()6480 IterType.tp_iter = (getiterfunc)IterIter; in init_structs()6481 IterType.tp_iternext = (iternextfunc)IterNext; in init_structs()6482 IterType.tp_dealloc = (destructor)IterDestructor; in init_structs()6484 IterType.tp_clear = (inquiry)IterClear; in init_structs()[all …]