summaryrefslogtreecommitdiffstats
path: root/pym/portage.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2006-07-17 17:49:16 +0000
committerZac Medico <zmedico@gentoo.org>2006-07-17 17:49:16 +0000
commit100d2a433294a11f87c4691913e9fc489e288704 (patch)
tree63640c310b2fb340ff5a2338a9dd56347f29e8d9 /pym/portage.py
parentcdbc6a7b2bbf0fb02976607913426062ad99c5af (diff)
downloadportage-100d2a433294a11f87c4691913e9fc489e288704.tar.gz
portage-100d2a433294a11f87c4691913e9fc489e288704.tar.bz2
portage-100d2a433294a11f87c4691913e9fc489e288704.zip
Remove redundant variable definitions.
svn path=/main/trunk/; revision=3911
Diffstat (limited to 'pym/portage.py')
-rw-r--r--pym/portage.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/pym/portage.py b/pym/portage.py
index 60dd48f97..786f89cd6 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -1105,7 +1105,6 @@ class config:
pmask_locations.append(abs_user_config)
pusedict = grabdict_package(
os.path.join(abs_user_config, "package.use"), recursive=1)
- self.pusedict = {}
for key in pusedict.keys():
cp = dep_getkey(key)
if not self.pusedict.has_key(cp):
@@ -1116,7 +1115,6 @@ class config:
pkgdict = grabdict_package(
os.path.join(abs_user_config, "package.keywords"),
recursive=1)
- self.pkeywordsdict = {}
for key in pkgdict.keys():
# default to ~arch if no specific keyword is given
if not pkgdict[key]:
@@ -1138,7 +1136,6 @@ class config:
pkgunmasklines = grabfile_package(
os.path.join(abs_user_config, "package.unmask"),
recursive=1)
- self.punmaskdict = {}
for x in pkgunmasklines:
mycatpkg=dep_getkey(x)
if self.punmaskdict.has_key(mycatpkg):