Home
last modified time | relevance | path

Searched refs:off_index (Results 1 – 1 of 1) sorted by relevance

/external/python/cpython2/Objects/
Dfileobject.c761 PyObject *offobj, *off_index; in file_seek() local
769 off_index = PyNumber_Index(offobj); in file_seek()
770 if (!off_index) { in file_seek()
779 off_index = offobj; in file_seek()
783 offset = PyInt_AsLong(off_index); in file_seek()
785 offset = PyLong_Check(off_index) ? in file_seek()
786 PyLong_AsLongLong(off_index) : PyInt_AsLong(off_index); in file_seek()
788 Py_DECREF(off_index); in file_seek()