(self, pos, whence=0)
| 1320 | return _BufferedIOMixin.tell(self) + len(self._write_buf) |
| 1321 | |
| 1322 | def seek(self, pos, whence=0): |
| 1323 | if whence not in valid_seek_flags: |
| 1324 | raise ValueError("invalid whence value") |
| 1325 | with self._write_lock: |
| 1326 | self._flush_unlocked() |
| 1327 | return _BufferedIOMixin.seek(self, pos, whence) |
| 1328 | |
| 1329 | def close(self): |
| 1330 | with self._write_lock: |
nothing calls this directly
no test coverage detected