(self, pkt, x)
| 1061 | # XXX Unused field: at least add some tests |
| 1062 | class OByteField(ByteField): |
| 1063 | def i2repr(self, pkt, x): |
| 1064 | # type: (Optional[Packet], int) -> str |
| 1065 | return "%03o" % self.i2h(pkt, x) |
| 1066 | |
| 1067 | |
| 1068 | class ThreeBytesField(Field[int, int]): |