Home | History | Annotate | Download | only in Objects

Lines Matching refs:defaultvalue

88    value, then the defaultvalue is returned.  If one of the calls fails,
93 _PyObject_LengthHint(PyObject *o, Py_ssize_t defaultvalue)
111 return defaultvalue;
118 return defaultvalue;
127 return defaultvalue;
129 rv = PyNumber_Check(ro) ? PyInt_AsSsize_t(ro) : defaultvalue;