Truncate size to pos, where pos is an int.
(self, pos=None)
| 1915 | self._unsupported("write") |
| 1916 | |
| 1917 | def truncate(self, pos=None): |
| 1918 | """Truncate size to pos, where pos is an int.""" |
| 1919 | self._unsupported("truncate") |
| 1920 | |
| 1921 | def readline(self): |
| 1922 | """Read until newline or EOF. |
nothing calls this directly
no test coverage detected