(self)
| 1133 | self._encoding = "utf-8" |
| 1134 | |
| 1135 | def _read_int8(self) -> int: |
| 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] |
no test coverage detected