Lines Matching defs:fillvalue
4538 PyObject *fillvalue;
4550 PyObject *fillvalue = Py_None;
4554 fillvalue = NULL;
4556 fillvalue = PyDict_GetItemWithError(kwds, &_Py_ID(fillvalue));
4558 if (fillvalue == NULL) {
4607 Py_INCREF(fillvalue);
4608 lz->fillvalue = fillvalue;
4618 Py_XDECREF(lz->fillvalue);
4627 Py_VISIT(lz->fillvalue);
4650 Py_INCREF(lz->fillvalue);
4651 item = lz->fillvalue;
4661 Py_INCREF(lz->fillvalue);
4662 item = lz->fillvalue;
4684 Py_INCREF(lz->fillvalue);
4685 item = lz->fillvalue;
4695 Py_INCREF(lz->fillvalue);
4696 item = lz->fillvalue;
4713 * Then use setstate to set the fillvalue
4732 return Py_BuildValue("ONO", Py_TYPE(lz), args, lz->fillvalue);
4739 Py_XSETREF(lz->fillvalue, state);
4752 "zip_longest(iter1 [,iter2 [...]], [fillvalue=None]) --> zip_longest object\n\
4758 are exhausted, the fillvalue is substituted in their place. The fillvalue\n\