Write the given buffer to the IO stream. Returns the number of bytes written, which may be less than the length of b in bytes.
(self, b)
| 642 | self._unsupported("readinto") |
| 643 | |
| 644 | def write(self, b): |
| 645 | """Write the given buffer to the IO stream. |
| 646 | |
| 647 | Returns the number of bytes written, which may be less than the |
| 648 | length of b in bytes. |
| 649 | """ |
| 650 | self._unsupported("write") |
| 651 | |
| 652 | io.RawIOBase.register(RawIOBase) |
| 653 |
nothing calls this directly
no test coverage detected