Return an int indicating the current stream position.
(self)
| 361 | self._unsupported("seek") |
| 362 | |
| 363 | def tell(self): |
| 364 | """Return an int indicating the current stream position.""" |
| 365 | return self.seek(0, 1) |
| 366 | |
| 367 | def truncate(self, pos=None): |
| 368 | """Truncate file to size bytes. |