Searched defs:nextlink (Results 1 - 2 of 2) sorted by relevance

/external/python/cpython2/Modules/
H A Ditertoolsmodule.c331 PyObject *nextlink; member in struct:__anon19495
354 tdo->nextlink = NULL;
364 if (tdo->nextlink == NULL)
365 tdo->nextlink = teedataobject_new(tdo->it);
366 Py_XINCREF(tdo->nextlink);
367 return tdo->nextlink;
398 Py_VISIT(tdo->nextlink);
407 PyObject *nextlink = ((teedataobject *)obj)->nextlink; local
408 ((teedataobject *)obj)->nextlink
[all...]
/external/python/cpython3/Modules/
H A Ditertoolsmodule.c394 PyObject *nextlink; member in struct:__anon20124
417 tdo->nextlink = NULL;
427 if (tdo->nextlink == NULL)
428 tdo->nextlink = teedataobject_newinternal(tdo->it);
429 Py_XINCREF(tdo->nextlink);
430 return tdo->nextlink;
462 Py_VISIT(tdo->nextlink);
471 PyObject *nextlink = ((teedataobject *)obj)->nextlink; local
472 ((teedataobject *)obj)->nextlink
[all...]

Completed in 108 milliseconds