diff options
-rw-r--r-- | pym/_emerge/__init__.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py index ff5c3d585..5dbb44795 100644 --- a/pym/_emerge/__init__.py +++ b/pym/_emerge/__init__.py @@ -1288,6 +1288,8 @@ class Task(SlotObject): return str(self._get_hash_key()) class Blocker(Task): + + __hash__ = Task.__hash__ __slots__ = ("root", "atom", "cp", "satisfied") def __init__(self, **kwargs): @@ -1302,6 +1304,8 @@ class Blocker(Task): return self._hash_key class Package(Task): + + __hash__ = Task.__hash__ __slots__ = ("built", "cpv", "depth", "installed", "metadata", "onlydeps", "operation", "root_config", "type_name", @@ -2658,6 +2662,7 @@ class EbuildMerge(SlotObject): class PackageUninstall(Task): + __hash__ = Task.__hash__ __slots__ = ("ldpath_mtimes", "opts", "pkg", "settings") def _get_hash_key(self): |