| 1170 | |
| 1171 | |
| 1172 | class SignedByteField(Field[int, int]): |
| 1173 | def __init__(self, name, default): |
| 1174 | # type: (str, Optional[int]) -> None |
| 1175 | Field.__init__(self, name, default, "b") |
| 1176 | |
| 1177 | |
| 1178 | class FieldValueRangeException(Scapy_Exception): |
no outgoing calls
no test coverage detected