(self)
| 120 | return result |
| 121 | |
| 122 | def read_uint24(self): |
| 123 | low, high = struct.unpack_from("<HB", self._data, self._position) |
| 124 | self._position += 3 |
| 125 | return low + (high << 16) |
| 126 | |
| 127 | def read_uint32(self): |
| 128 | result = struct.unpack_from("<I", self._data, self._position)[0] |
no outgoing calls
no test coverage detected