Return the stream's file pointer position.
(self)
| 504 | self.__read(2) |
| 505 | |
| 506 | def tell(self): |
| 507 | """Return the stream's file pointer position. |
| 508 | """ |
| 509 | return self.pos |
| 510 | |
| 511 | def seek(self, pos=0): |
| 512 | """Set the stream's file pointer to pos. Negative seeking |
no outgoing calls
no test coverage detected