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