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)
| 674 | self._unsupported("readinto") |
| 675 | |
| 676 | def write(self, b): |
| 677 | """Write the given buffer to the IO stream. |
| 678 | |
| 679 | Returns the number of bytes written, which may be less than the |
| 680 | length of b in bytes. |
| 681 | """ |
| 682 | self._unsupported("write") |
| 683 | |
| 684 | io.RawIOBase.register(RawIOBase) |
| 685 | from _io import FileIO |
nothing calls this directly
no test coverage detected