| 1404 | |
| 1405 | |
| 1406 | class XLELongField(LELongField, XLongField): |
| 1407 | def i2repr(self, pkt, x): |
| 1408 | # type: (Optional[Packet], int) -> str |
| 1409 | return XLongField.i2repr(self, pkt, x) |
| 1410 | |
| 1411 | |
| 1412 | class IEEEFloatField(Field[int, int]): |
no outgoing calls
no test coverage detected