| 1398 | |
| 1399 | |
| 1400 | class XLongField(LongField): |
| 1401 | def i2repr(self, pkt, x): |
| 1402 | # type: (Optional[Packet], int) -> str |
| 1403 | return lhex(self.i2h(pkt, x)) |
| 1404 | |
| 1405 | |
| 1406 | class XLELongField(LELongField, XLongField): |
no outgoing calls
no test coverage detected
searching dependent graphs…