X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;ds=sidebyside;f=src%2Fbindings%2Fpython%2Fbt2%2Fbt2%2Finteger_range_set.py;h=c1bddae3426dc1cc9b8673fd7bd19010a7feaf85;hb=0235b0db7de5bcacdb3650c92461f2ce5eb2143d;hp=44f08ed4876319f1a249bc1af643326137f3c4c2;hpb=fc86600024a8b228b3b4b1f9931a0d5527e87acc;p=babeltrace.git diff --git a/src/bindings/python/bt2/bt2/integer_range_set.py b/src/bindings/python/bt2/bt2/integer_range_set.py index 44f08ed4..c1bddae3 100644 --- a/src/bindings/python/bt2/bt2/integer_range_set.py +++ b/src/bindings/python/bt2/bt2/integer_range_set.py @@ -1,24 +1,6 @@ -# The MIT License (MIT) +# SPDX-License-Identifier: MIT # # Copyright (c) 2017 Philippe Proulx -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. from bt2 import native_bt, object, utils import collections.abc @@ -113,7 +95,7 @@ class _IntegerRangeSetConst(object._SharedObject, collections.abc.Set): if not isinstance(other, _IntegerRangeSetConst): return False - return self._compare(self._ptr, other._ptr) + return self._is_equal(self._ptr, other._ptr) def contains_value(self, value): for rg in self: @@ -163,7 +145,7 @@ class _SignedIntegerRangeSetConst(_IntegerRangeSetConst): ) _range_get_lower = staticmethod(native_bt.integer_range_signed_get_lower) _range_get_upper = staticmethod(native_bt.integer_range_signed_get_upper) - _compare = staticmethod(native_bt.integer_range_set_signed_compare) + _is_equal = staticmethod(native_bt.integer_range_set_signed_is_equal) _range_pycls = _SignedIntegerRangeConst @@ -184,7 +166,7 @@ class _UnsignedIntegerRangeSetConst(_IntegerRangeSetConst): ) _range_get_lower = staticmethod(native_bt.integer_range_unsigned_get_lower) _range_get_upper = staticmethod(native_bt.integer_range_unsigned_get_upper) - _compare = staticmethod(native_bt.integer_range_set_unsigned_compare) + _is_equal = staticmethod(native_bt.integer_range_set_unsigned_is_equal) _range_pycls = _UnsignedIntegerRangeConst