Lines Matching refs:fillvalue
4342 PyObject *fillvalue; member
4354 PyObject *fillvalue = Py_None; in zip_longest_new() local
4358 fillvalue = PyDict_GetItemString(kwds, "fillvalue"); in zip_longest_new()
4359 if (fillvalue == NULL || PyDict_GET_SIZE(kwds) > 1) { in zip_longest_new()
4410 Py_INCREF(fillvalue); in zip_longest_new()
4411 lz->fillvalue = fillvalue; in zip_longest_new()
4421 Py_XDECREF(lz->fillvalue); in zip_longest_dealloc()
4430 Py_VISIT(lz->fillvalue); in zip_longest_traverse()
4453 Py_INCREF(lz->fillvalue); in zip_longest_next()
4454 item = lz->fillvalue; in zip_longest_next()
4464 Py_INCREF(lz->fillvalue); in zip_longest_next()
4465 item = lz->fillvalue; in zip_longest_next()
4482 Py_INCREF(lz->fillvalue); in zip_longest_next()
4483 item = lz->fillvalue; in zip_longest_next()
4493 Py_INCREF(lz->fillvalue); in zip_longest_next()
4494 item = lz->fillvalue; in zip_longest_next()
4530 return Py_BuildValue("ONO", Py_TYPE(lz), args, lz->fillvalue); in zip_longest_reduce()
4537 Py_XSETREF(lz->fillvalue, state); in zip_longest_setstate()