Truncate size to pos, where pos is an int.
(self, pos=None)
| 1891 | self._unsupported("write") |
| 1892 | |
| 1893 | def truncate(self, pos=None): |
| 1894 | """Truncate size to pos, where pos is an int.""" |
| 1895 | self._unsupported("truncate") |
| 1896 | |
| 1897 | def readline(self): |
| 1898 | """Read until newline or EOF. |
nothing calls this directly
no test coverage detected