summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/dbapi/vartree.py10
1 files changed, 7 insertions, 3 deletions
diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py
index b3eefe8c4..598845e0b 100644
--- a/pym/portage/dbapi/vartree.py
+++ b/pym/portage/dbapi/vartree.py
@@ -153,6 +153,8 @@ class LinkageMap(object):
"""Helper class used as _obj_properties keys for objects."""
+ __slots__ = ("__weakref__", "_key")
+
def __init__(self, object):
"""
This takes a path to an object.
@@ -167,9 +169,11 @@ class LinkageMap(object):
return hash(self._key)
def __eq__(self, other):
- if not isinstance(other, self.__class__):
- return False
- return self._key == other._key
+ if isinstance(other, self.__class__):
+ other_key = other._key
+ else:
+ other_key = other
+ return self._key == other_key
def _generate_object_key(self, object):
"""