summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
Diffstat (limited to 'pym')
-rw-r--r--pym/_emerge/__init__.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py
index 68f976cbe..539a9235a 100644
--- a/pym/_emerge/__init__.py
+++ b/pym/_emerge/__init__.py
@@ -1794,21 +1794,6 @@ class PackageVirtualDbapi(portage.dbapi):
return True
return False
- def __getitem__(self, k):
- cpv = getattr(k, "cpv", None)
- if cpv is None:
- try:
- cpv = k[2]
- except (TypeError, IndexError):
- raise KeyError(k)
- if cpv is None:
- raise KeyError(k)
- existing = self._cpv_map.get(cpv)
- if existing is not None and \
- existing == k:
- return existing
- raise KeyError(k)
-
def match_pkgs(self, atom):
return [self._cpv_map[cpv] for cpv in self.match(atom)]