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

Lines Matching defs:tell

313     def tell(self):
320 Size defaults to the current IO position as reported by tell(). Return
365 If False, seek(), tell() and truncate() will raise IOError.
699 def tell(self):
700 pos = self.raw.tell()
702 raise IOError("tell() returned an invalid position")
712 pos = self.tell()
867 def tell(self):
869 raise ValueError("tell on closed file")
1041 def tell(self):
1042 return _BufferedIOMixin.tell(self) - len(self._read_buf) + self._read_pos
1112 pos = self.raw.tell()
1140 def tell(self):
1141 return _BufferedIOMixin.tell(self) + len(self._write_buf)
1257 def tell(self):
1259 return BufferedWriter.tell(self)
1261 return BufferedReader.tell(self)
1265 pos = self.tell()
1514 position = self.buffer.tell()
1525 # snapshot point. We use this to reconstruct decoder states in tell().
1665 # To prepare for tell(), we need to snapshot a point in the
1686 # The meaning of a tell() cookie is: seek to position, set the
1690 # decoders, tell() will often just give a byte offset in the file.
1701 def tell(self):
1707 position = self.buffer.tell()
1766 pos = self.tell()
1779 raise ValueError("tell on closed file")
1788 cookie = self.tell()