projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7fefee1
)
Fix infinite recursion in items and values methods.
author
Zac Medico
<zmedico@gentoo.org>
Mon, 21 Sep 2009 16:25:27 +0000
(16:25 -0000)
committer
Zac Medico
<zmedico@gentoo.org>
Mon, 21 Sep 2009 16:25:27 +0000
(16:25 -0000)
svn path=/main/trunk/; revision=14329
pym/portage/__init__.py
patch
|
blob
|
history
diff --git
a/pym/portage/__init__.py
b/pym/portage/__init__.py
index e8532e60d7a68ee8b8cca01f474661a46c6b7d8b..d1dba8defb2c1c5c90318f9b6e23ada230c72d41 100644
(file)
--- a/
pym/portage/__init__.py
+++ b/
pym/portage/__init__.py
@@
-3631,7
+3631,7
@@
class config(object):
yield (k, self[k])
def items(self):
- return list(self.items())
+ return list(self.ite
rite
ms())
def __setitem__(self,mykey,myvalue):
"set a value; will be thrown away at reset() time"