def _value(self): status, value = native_bt.value_string_get(self._ptr) assert (status == native_bt.VALUE_STATUS_OK) return value
def _value(self): status, value = native_bt.value_string_get(self._ptr) assert(status == native_bt.VALUE_STATUS_OK) return value
def _value(self): return native_bt.value_string_get(self._ptr)
def value(self): status, value = native_bt.value_string_get(self._ptr) self._handle_status(status) return value