X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;ds=sidebyside;f=src%2Fbindings%2Fpython%2Fbt2%2Fbt2%2Fvalue.py;h=104698a0fb752eb9b9776a6c1c41e1c1aa2e6660;hb=3fb99a226ccb40c79de6b55b5a249d93b9c5262e;hp=3c883f76e6189c42583c57b80b09a5062f3ecfb7;hpb=cfbd7cf3bde05e8a6606478889dcd663604ef7b5;p=babeltrace.git diff --git a/src/bindings/python/bt2/bt2/value.py b/src/bindings/python/bt2/bt2/value.py index 3c883f76..104698a0 100644 --- a/src/bindings/python/bt2/bt2/value.py +++ b/src/bindings/python/bt2/bt2/value.py @@ -37,7 +37,7 @@ def _create_from_ptr(ptr): # to it that we are not going to manage anymore, since we don't create a # Python wrapper for it. Therefore put that reference immediately. if ptr == native_bt.value_null: - bt2.value._Value._put_ref(ptr) + _Value._put_ref(ptr) return typeid = native_bt.value_get_type(ptr) @@ -92,7 +92,7 @@ class _Value(object._SharedObject, metaclass=abc.ABCMeta): def _check_create_status(self, ptr): if ptr is None: - raise bt2.CreationError( + raise bt2._MemoryError( 'cannot create {} value object'.format(self._NAME.lower()) ) @@ -307,18 +307,18 @@ class _IntegerValue(_IntegralValue): class UnsignedIntegerValue(_IntegerValue): _check_int_range = staticmethod(utils._check_uint64) - _create_default_value = staticmethod(native_bt.value_unsigned_integer_create) - _create_value = staticmethod(native_bt.value_unsigned_integer_create_init) - _set_value = staticmethod(native_bt.value_unsigned_integer_set) - _get_value = staticmethod(native_bt.value_unsigned_integer_get) + _create_default_value = staticmethod(native_bt.value_integer_unsigned_create) + _create_value = staticmethod(native_bt.value_integer_unsigned_create_init) + _set_value = staticmethod(native_bt.value_integer_unsigned_set) + _get_value = staticmethod(native_bt.value_integer_unsigned_get) class SignedIntegerValue(_IntegerValue): _check_int_range = staticmethod(utils._check_int64) - _create_default_value = staticmethod(native_bt.value_signed_integer_create) - _create_value = staticmethod(native_bt.value_signed_integer_create_init) - _set_value = staticmethod(native_bt.value_signed_integer_set) - _get_value = staticmethod(native_bt.value_signed_integer_get) + _create_default_value = staticmethod(native_bt.value_integer_signed_create) + _create_value = staticmethod(native_bt.value_integer_signed_create_init) + _set_value = staticmethod(native_bt.value_integer_signed_set) + _get_value = staticmethod(native_bt.value_integer_signed_get) class RealValue(_RealValue):