From 2d8a6cce23a3a4e19379a19b63e690ffce6748d8 Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Mon, 11 May 2020 13:25:20 -0400 Subject: re-add deleted ge with the proper name --- python/architecture.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'python') 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 -- cgit v1.3.1