(self)
| 1136 | return struct.unpack("b", self._path_or_buf.read(1))[0] |
| 1137 | |
| 1138 | def _read_uint8(self) -> int: |
| 1139 | return struct.unpack("B", self._path_or_buf.read(1))[0] |
| 1140 | |
| 1141 | def _read_uint16(self) -> int: |
| 1142 | return struct.unpack(f"{self._byteorder}H", self._path_or_buf.read(2))[0] |