Lines Matching refs:teeobject
18 class itertools._tee "teeobject *" "&tee_type"
589 } teeobject;
817 tee_next(teeobject *to)
836 tee_traverse(teeobject *to, visitproc visit, void *arg)
843 tee_copy(teeobject *to, PyObject *Py_UNUSED(ignored))
845 teeobject *newto;
847 newto = PyObject_GC_New(teeobject, &tee_type);
863 teeobject *to;
870 to = (teeobject *)tee_copy((teeobject *)it, NULL);
879 to = PyObject_GC_New(teeobject, &tee_type);
909 tee_clear(teeobject *to)
918 tee_dealloc(teeobject *to)
926 tee_reduce(teeobject *to, PyObject *Py_UNUSED(ignored))
932 tee_setstate(teeobject *to, PyObject *state)
963 sizeof(teeobject), /* tp_basicsize */
986 offsetof(teeobject, weakreflist), /* tp_weaklistoffset */