Lines Matching refs:fillvalue
3824 PyObject *fillvalue; member
3836 PyObject *fillvalue = Py_None; in izip_longest_new() local
3840 fillvalue = PyDict_GetItemString(kwds, "fillvalue"); in izip_longest_new()
3841 if (fillvalue == NULL || PyDict_Size(kwds) > 1) { in izip_longest_new()
3891 Py_INCREF(fillvalue); in izip_longest_new()
3892 lz->fillvalue = fillvalue; in izip_longest_new()
3902 Py_XDECREF(lz->fillvalue); in izip_longest_dealloc()
3911 Py_VISIT(lz->fillvalue); in izip_longest_traverse()
3934 Py_INCREF(lz->fillvalue); in izip_longest_next()
3935 item = lz->fillvalue; in izip_longest_next()
3945 Py_INCREF(lz->fillvalue); in izip_longest_next()
3946 item = lz->fillvalue; in izip_longest_next()
3963 Py_INCREF(lz->fillvalue); in izip_longest_next()
3964 item = lz->fillvalue; in izip_longest_next()
3974 Py_INCREF(lz->fillvalue); in izip_longest_next()
3975 item = lz->fillvalue; in izip_longest_next()