Move to kernel style SPDX license identifiers
[babeltrace.git] / src / bindings / python / bt2 / bt2 / integer_range_set.py
index 44f08ed4876319f1a249bc1af643326137f3c4c2..c1bddae3426dc1cc9b8673fd7bd19010a7feaf85 100644 (file)
@@ -1,24 +1,6 @@
-# The MIT License (MIT)
+# SPDX-License-Identifier: MIT
 #
 # Copyright (c) 2017 Philippe Proulx <pproulx@efficios.com>
-#
-# 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
 
 
This page took 0.024271 seconds and 4 git commands to generate.