Home | History | Annotate | Download | only in Objects

Lines Matching refs:iobj

4469                     PyObject *iobj=NULL;

4472 iobj = v;
4473 Py_INCREF(iobj);
4476 iobj = PyNumber_Int(v);
4477 if (iobj==NULL) iobj = PyNumber_Long(v);
4479 if (iobj!=NULL) {
4480 if (PyInt_Check(iobj)) {
4485 flags, prec, c, iobj);
4486 Py_DECREF(iobj);
4491 else if (PyLong_Check(iobj)) {
4495 temp = _PyString_FormatLong(iobj, flags,
4497 Py_DECREF(iobj);
4504 Py_DECREF(iobj);