(self, stream)
| 974 | return len(self.binary) |
| 975 | |
| 976 | def write_to(self, stream): |
| 977 | if hasattr(stream, "write_bytes"): |
| 978 | stream.write_bytes(self.binary) |
| 979 | else: |
| 980 | stream.write(self.binary) |
| 981 | |
| 982 | def getbuffer(self) -> memoryview: |
| 983 | return memoryview(self.binary) |
nothing calls this directly
no test coverage detected