Lines Matching defs:next
291 /* skip to next iteration group */
717 next: object
724 PyObject *values, PyObject *next)
747 if (next != Py_None) {
748 if (!Py_IS_TYPE(next, &teedataobject_type))
751 Py_INCREF(next);
752 tdo->nextlink = next;
755 if (next != Py_None)
756 goto err; /* shouldn't have a next if we are not full */
1597 Py_ssize_t next;
1682 lz->next = start;
1718 while (lz->cnt < lz->next) {
1731 oldnext = lz->next;
1734 lz->next += (size_t)lz->step;
1735 if (lz->next < oldnext || (stop != -1 && lz->next > stop))
1736 lz->next = stop;
1748 * then 'setstate' with the next and count
1773 lz->it, lz->next, stop, lz->step,
1800 Return an iterator whose next() method returns selected values from an\n\
2102 /* lz->active is consumed, try with the next iterable. */
2156 first iterable until it is exhausted, then elements from the next\n\
2391 next pool when the previous one rolls-over */
2396 /* Roll-over and advance to next pool */