Return the stream's file pointer position.
(self)
| 513 | self.__read(2) |
| 514 | |
| 515 | def tell(self): |
| 516 | """Return the stream's file pointer position. |
| 517 | """ |
| 518 | return self.pos |
| 519 | |
| 520 | def seek(self, pos=0): |
| 521 | """Set the stream's file pointer to pos. Negative seeking |
no outgoing calls
no test coverage detected