Write string s to stream and returning an int.
(self, s)
| 1887 | self._unsupported("read") |
| 1888 | |
| 1889 | def write(self, s): |
| 1890 | """Write string s to stream and returning an int.""" |
| 1891 | self._unsupported("write") |
| 1892 | |
| 1893 | def truncate(self, pos=None): |
| 1894 | """Truncate size to pos, where pos is an int.""" |
nothing calls this directly
no test coverage detected