summaryrefslogtreecommitdiff
path: root/build-aux/measurestack/analyze.py
diff options
context:
space:
mode:
Diffstat (limited to 'build-aux/measurestack/analyze.py')
-rw-r--r--build-aux/measurestack/analyze.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/build-aux/measurestack/analyze.py b/build-aux/measurestack/analyze.py
index 5b29841..8100813 100644
--- a/build-aux/measurestack/analyze.py
+++ b/build-aux/measurestack/analyze.py
@@ -62,7 +62,7 @@ class BaseName:
return self._content < other._content
def __hash__(self) -> int:
- return hash(self._content)
+ return self._content.__hash__()
def as_qname(self) -> "QName":
return QName(self._content)
@@ -106,7 +106,7 @@ class QName:
return self._content < other._content
def __hash__(self) -> int:
- return hash(self._content)
+ return self._content.__hash__()
def base(self) -> BaseName:
if self._base is None: