projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6fc1597
)
Remove unnecessary dict.keys() call.
author
Zac Medico
<zmedico@gentoo.org>
Sun, 10 Aug 2008 10:30:20 +0000
(10:30 -0000)
committer
Zac Medico
<zmedico@gentoo.org>
Sun, 10 Aug 2008 10:30:20 +0000
(10:30 -0000)
svn path=/main/trunk/; revision=11392
pym/portage/dbapi/vartree.py
patch
|
blob
|
history
diff --git
a/pym/portage/dbapi/vartree.py
b/pym/portage/dbapi/vartree.py
index 0ce6534d10f01c0cab9eec4a410938e0938a4ad6..cef86a2849929b2368853842e39685529724b518 100644
(file)
--- a/
pym/portage/dbapi/vartree.py
+++ b/
pym/portage/dbapi/vartree.py
@@
-343,7
+343,7
@@
class LinkageMap(object):
if not self._libs:
self.rebuild()
# Iterate over all binaries within LinkageMap.
- for obj in self._obj_properties
.keys()
:
+ for obj in self._obj_properties:
rValue.setdefault(obj, self.findProviders(obj))
return rValue