diff options
| -rw-r--r-- | python/architecture.py | 5 |
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 |
