(self)
| 1145 | return struct.unpack(f"{self._byteorder}I", self._path_or_buf.read(4))[0] |
| 1146 | |
| 1147 | def _read_uint64(self) -> int: |
| 1148 | return struct.unpack(f"{self._byteorder}Q", self._path_or_buf.read(8))[0] |
| 1149 | |
| 1150 | def _read_int16(self) -> int: |
| 1151 | return struct.unpack(f"{self._byteorder}h", self._path_or_buf.read(2))[0] |
no test coverage detected