(self, pos)
| 1407 | return self._pos - self._st |
| 1408 | |
| 1409 | def seek(self, pos): |
| 1410 | if pos < 0: pos = 0 |
| 1411 | self._pos = min(self._st + pos, self._end) |
| 1412 | |
| 1413 | def read(self, sz=None): |
| 1414 | max_sz = self._end - self._pos |
no outgoing calls
no test coverage detected