Write string s to stream and returning an int.
(self, s)
| 1851 | self._unsupported("read") |
| 1852 | |
| 1853 | def write(self, s): |
| 1854 | """Write string s to stream and returning an int.""" |
| 1855 | self._unsupported("write") |
| 1856 | |
| 1857 | def truncate(self, pos=None): |
| 1858 | """Truncate size to pos, where pos is an int.""" |
nothing calls this directly
no test coverage detected