Truncate size to pos, where pos is an int.
(self, pos=None)
| 1855 | self._unsupported("write") |
| 1856 | |
| 1857 | def truncate(self, pos=None): |
| 1858 | """Truncate size to pos, where pos is an int.""" |
| 1859 | self._unsupported("truncate") |
| 1860 | |
| 1861 | def readline(self): |
| 1862 | """Read until newline or EOF. |
nothing calls this directly
no test coverage detected