Lines Matching refs:tell
388 def tell(self):
395 Size defaults to the current IO position as reported by tell(). Return
453 If False, seek(), tell() and truncate() will raise OSError.
815 def tell(self):
816 pos = self.raw.tell()
818 raise OSError("tell() returned an invalid position")
831 pos = self.tell()
1007 def tell(self):
1009 raise ValueError("tell on closed file")
1226 def tell(self):
1227 return _BufferedIOMixin.tell(self) - len(self._read_buf) + self._read_pos
1294 pos = self.raw.tell()
1318 def tell(self):
1319 return _BufferedIOMixin.tell(self) + len(self._write_buf)
1448 def tell(self):
1450 return BufferedWriter.tell(self)
1452 return BufferedReader.tell(self)
1456 pos = self.tell()
1742 def tell(self):
1743 """tell() -> int. Current file position.
1752 Size defaults to the current file position, as returned by tell().
1758 size = self.tell()
1780 self.tell()
2077 position = self.buffer.tell()
2088 # snapshot point. We use this to reconstruct decoder states in tell().
2294 # To prepare for tell(), we need to snapshot a point in the
2323 # The meaning of a tell() cookie is: seek to position, set the
2327 # decoders, tell() will often just give a byte offset in the file.
2338 def tell(self):
2344 position = self.buffer.tell()
2440 pos = self.tell()
2466 raise ValueError("tell on closed file")
2475 cookie = self.tell()