Deserialise the extension from binary data.
(self, parser)
| 72 | self.data = bytearray(0) |
| 73 | |
| 74 | def parse(self, parser): |
| 75 | """Deserialise the extension from binary data.""" |
| 76 | self.data = parser.bytes |
| 77 | return self |
| 78 | |
| 79 | def __format__(self, formatstr): |
| 80 | """Print extension data in human-readable form.""" |
nothing calls this directly
no outgoing calls
no test coverage detected