(self, n=-1, whence=os.SEEK_SET)
| 34 | return True |
| 35 | |
| 36 | def seek(self, n=-1, whence=os.SEEK_SET): |
| 37 | # Note that this not safe for seeking forward. |
| 38 | return self._cache.seek(n, whence) |
| 39 | |
| 40 | def read(self, n=-1): |
| 41 | read_from_cache = self._cache.read(n) |
no outgoing calls
no test coverage detected