| 1350 | |
| 1351 | |
| 1352 | class LESignedIntField(Field[int, int]): |
| 1353 | def __init__(self, name, default): |
| 1354 | # type: (str, int) -> None |
| 1355 | Field.__init__(self, name, default, "<i") |
| 1356 | |
| 1357 | |
| 1358 | class XIntField(IntField): |
no outgoing calls
no test coverage detected