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