Write *data* to the output stream and return the number of items written.
(self, data, /)
| 139 | |
| 140 | @abc.abstractmethod |
| 141 | def write(self, data, /): |
| 142 | """Write *data* to the output stream and return the number of items written.""" |
| 143 | |
| 144 | @classmethod |
| 145 | def __subclasshook__(cls, C): |
no outgoing calls