summaryrefslogtreecommitdiff
path: root/python/architecture.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/architecture.py')
-rw-r--r--python/architecture.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/python/architecture.py b/python/architecture.py
index 014de6ad..3f811412 100644
--- a/python/architecture.py
+++ b/python/architecture.py
@@ -2765,6 +2765,11 @@ class ReferenceSource(object):
return NotImplemented
return self.address > other.address
+ def __ge__(self, other):
+ if not isinstance(other, self.__class__):
+ return NotImplemented
+ return self.address >= other.address
+
def __le__(self, other):
if not isinstance(other, self.__class__):
return NotImplemented