Write string s to stream and returning an int.
(self, s)
| 1911 | self._unsupported("read") |
| 1912 | |
| 1913 | def write(self, s): |
| 1914 | """Write string s to stream and returning an int.""" |
| 1915 | self._unsupported("write") |
| 1916 | |
| 1917 | def truncate(self, pos=None): |
| 1918 | """Truncate size to pos, where pos is an int.""" |
nothing calls this directly
no test coverage detected