(self, b: io.BytesIO)
| 38 | data: bytes = b"" |
| 39 | |
| 40 | def write(self, b: io.BytesIO) -> None: |
| 41 | ipc.channel.write_string(b, self.string) |
| 42 | ipc.channel.write_int(b, self.number) |
| 43 | ipc.channel.write_double(b, self.double) |
| 44 | ipc.channel.write_bytes(b, self.data) |
| 45 | |
| 46 | def read(self, b: io.BytesIO) -> None: |
| 47 | self.string = ipc.channel.read_string(b) |
no outgoing calls
no test coverage detected