(self)
| 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] |
| 1143 | |
| 1144 | def _read_uint32(self) -> int: |
| 1145 | return struct.unpack(f"{self._byteorder}I", self._path_or_buf.read(4))[0] |
no test coverage detected