auxdbkeylen=len(auxdbkeys)
def portageexit():
- if secpass > 1 and os.environ.get("SANDBOX_ON") != "1":
+ if data.secpass > 1 and os.environ.get("SANDBOX_ON") != "1":
close_portdbapi_caches()
try:
mtimedb
def __hash__(self):
return hash(object.__getattribute__(self, '_get_target')())
+ def __ge__(self, other):
+ return object.__getattribute__(self, '_get_target')() >= other
+
+ def __gt__(self, other):
+ return object.__getattribute__(self, '_get_target')() > other
+
+ def __le__(self, other):
+ return object.__getattribute__(self, '_get_target')() <= other
+
+ def __lt__(self, other):
+ return object.__getattribute__(self, '_get_target')() < other
+
def __eq__(self, other):
return object.__getattribute__(self, '_get_target')() == other