| 1368 | |
| 1369 | |
| 1370 | class XLEShortField(LEShortField, XShortField): |
| 1371 | def i2repr(self, pkt, x): |
| 1372 | # type: (Optional[Packet], int) -> str |
| 1373 | return XShortField.i2repr(self, pkt, x) |
| 1374 | |
| 1375 | |
| 1376 | class LongField(Field[int, int]): |
no outgoing calls
no test coverage detected