(self)
| 115 | return result |
| 116 | |
| 117 | def read_uint16(self): |
| 118 | result = struct.unpack_from("<H", self._data, self._position)[0] |
| 119 | self._position += 2 |
| 120 | return result |
| 121 | |
| 122 | def read_uint24(self): |
| 123 | low, high = struct.unpack_from("<HB", self._data, self._position) |
no outgoing calls
no test coverage detected