Return an int indicating the current stream position.
(self)
| 386 | self._unsupported("seek") |
| 387 | |
| 388 | def tell(self): |
| 389 | """Return an int indicating the current stream position.""" |
| 390 | return self.seek(0, 1) |
| 391 | |
| 392 | def truncate(self, pos=None): |
| 393 | """Truncate file to size bytes. |