Home | History | Annotate | Download | only in python2.7

Lines Matching full:whence

1898     def seek(self, offset, whence=0):
1900 if whence == 1:
1902 self._file.seek(offset, whence)
1935 def seek(self, offset, whence=0):
1937 if whence == 0:
1939 whence = 1
1940 elif whence == 2:
1942 whence = 1
1943 _ProxyFile.seek(self, offset, whence)