Home | History | Annotate | Download | only in Objects

Lines Matching defs:whence

695 _portable_fseek(FILE *fp, Py_off_t offset, int whence)

698 return fseek(fp, offset, whence);
700 return fseeko(fp, offset, whence);
702 return fseek64(fp, offset, whence);
704 return _fseek(fp, offset, whence);
709 switch (whence) {
760 int whence;
768 whence = 0;
769 if (!PyArg_ParseTuple(args, "O|i:seek", &offobj, &whence))
796 ret = _portable_fseek(f->f_fp, offset, whence);
2054 "seek(offset[, whence]) -> None. Move to new file position.\n"
2056 "Argument offset is a byte count. Optional argument whence defaults to\n"