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 = 11940 elif whence == 2:1942 whence = 11943 _ProxyFile.seek(self, offset, whence)