(self)
| 1154 | return struct.unpack(f"{self._byteorder}i", self._path_or_buf.read(4))[0] |
| 1155 | |
| 1156 | def _read_int64(self) -> int: |
| 1157 | return struct.unpack(f"{self._byteorder}q", self._path_or_buf.read(8))[0] |
| 1158 | |
| 1159 | def _read_char8(self) -> bytes: |
| 1160 | return struct.unpack("c", self._path_or_buf.read(1))[0] |
no test coverage detected