Read data from the input stream and return it. If *size* is specified, at most *size* items (bytes/characters) will be read.
(self, size=..., /)
| 114 | |
| 115 | @abc.abstractmethod |
| 116 | def read(self, size=..., /): |
| 117 | """Read data from the input stream and return it. |
| 118 | |
| 119 | If *size* is specified, at most *size* items (bytes/characters) will be |
| 120 | read. |
| 121 | """ |
| 122 | |
| 123 | @classmethod |
| 124 | def __subclasshook__(cls, C): |
no outgoing calls