Home | History | Annotate | Download | only in Modules

Lines Matching refs:lenobj

3217     PyObject *lenobj;

3219 if (!PyArg_ParseTuple(args, "iO:ftruncate", &fd, &lenobj))
3223 length = PyInt_AsLong(lenobj);
3225 length = PyLong_Check(lenobj) ?
3226 PyLong_AsLongLong(lenobj) : PyInt_AsLong(lenobj);