(self, pos, whence=0)
| 1295 | return _BufferedIOMixin.tell(self) + len(self._write_buf) |
| 1296 | |
| 1297 | def seek(self, pos, whence=0): |
| 1298 | if whence not in valid_seek_flags: |
| 1299 | raise ValueError("invalid whence value") |
| 1300 | with self._write_lock: |
| 1301 | self._flush_unlocked() |
| 1302 | return _BufferedIOMixin.seek(self, pos, whence) |
| 1303 | |
| 1304 | def close(self): |
| 1305 | with self._write_lock: |
nothing calls this directly
no test coverage detected