(self)
| 124 | return low + (high << 16) |
| 125 | |
| 126 | def read_uint32(self): |
| 127 | result = struct.unpack_from("<I", self._data, self._position)[0] |
| 128 | self._position += 4 |
| 129 | return result |
| 130 | |
| 131 | def read_uint64(self): |
| 132 | result = struct.unpack_from("<Q", self._data, self._position)[0] |
nothing calls this directly
no outgoing calls
no test coverage detected