Home | History | Annotate | Download | only in _io

Lines Matching defs:whence

1958     int whence = 0;

1964 if (!PyArg_ParseTuple(args, "O|i:seek", &cookieObj, &whence))
1976 if (whence == 1) {
1996 else if (whence == 2) {
2027 else if (whence != 0) {
2029 "invalid whence (%d, should be 0, 1 or 2)", whence);