[pypy-svn] r31341 - pypy/dist/pypy/objspace/std

benyoung at codespeak.net benyoung at codespeak.net
Wed Aug 16 13:27:53 CEST 2006


Author: benyoung
Date: Wed Aug 16 13:27:37 2006
New Revision: 31341

Modified:
   pypy/dist/pypy/objspace/std/dictmultiobject.py
Log:
Immediate fix :(

Modified: pypy/dist/pypy/objspace/std/dictmultiobject.py
==============================================================================
--- pypy/dist/pypy/objspace/std/dictmultiobject.py	(original)
+++ pypy/dist/pypy/objspace/std/dictmultiobject.py	Wed Aug 16 13:27:37 2006
@@ -250,7 +250,7 @@
 
     def _as_rdict(self):
         newimpl = RDictImplementation(self.space)
-        for k, w_v in w_self.content.items():
+        for k, w_v in self.content.items():
             newimpl.setitem[w_self.space.wrap(k)] = w_v
         return newimpl
 



More information about the Pypy-commit mailing list