summaryrefslogtreecommitdiffstats
path: root/pym/portage_dep.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage_dep.py')
-rw-r--r--pym/portage_dep.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pym/portage_dep.py b/pym/portage_dep.py
index 5eacb8368..a3186e8f1 100644
--- a/pym/portage_dep.py
+++ b/pym/portage_dep.py
@@ -501,8 +501,8 @@ def match_from_list(mydep, candidate_list):
"""
global _match_from_list_cache
- mylist = _match_from_list_cache.get(
- hash((mydep, tuple(candidate_list))), None)
+ cache_key = (mydep, tuple(candidate_list))
+ mylist = _match_from_list_cache.get(cache_key, None)
if mylist is not None:
return mylist[:]
@@ -601,5 +601,5 @@ def match_from_list(mydep, candidate_list):
else:
raise KeyError("Unknown operator: %s" % mydep)
- _match_from_list_cache[hash((mydep, tuple(candidate_list)))] = mylist
+ _match_from_list_cache[cache_key] = mylist
return mylist