(self, size: int = MAX_READ)
| 85 | return bytes(bdata) |
| 86 | |
| 87 | def read(self, size: int = MAX_READ) -> str: |
| 88 | return self.read_bytes(size).decode("utf-8") |
| 89 | |
| 90 | def read_bytes(self, size: int = MAX_READ) -> bytes: |
| 91 | """Read bytes from an IPC connection until we have a full frame.""" |
nothing calls this directly
no test coverage detected