| 1356 | |
| 1357 | |
| 1358 | class XIntField(IntField): |
| 1359 | def i2repr(self, pkt, x): |
| 1360 | # type: (Optional[Packet], int) -> str |
| 1361 | return lhex(self.i2h(pkt, x)) |
| 1362 | |
| 1363 | |
| 1364 | class XLEIntField(LEIntField, XIntField): |
no outgoing calls
no test coverage detected
searching dependent graphs…