[pypy-svn] r4933 - pypy/branch/src-newobjectmodel/pypy/objspace/std

mwh at codespeak.net mwh at codespeak.net
Fri Jun 4 23:36:08 CEST 2004


Author: mwh
Date: Fri Jun  4 23:36:07 2004
New Revision: 4933

Modified:
   pypy/branch/src-newobjectmodel/pypy/objspace/std/stdtypedef.py
Log:
fix recursive mro() call


Modified: pypy/branch/src-newobjectmodel/pypy/objspace/std/stdtypedef.py
==============================================================================
--- pypy/branch/src-newobjectmodel/pypy/objspace/std/stdtypedef.py	(original)
+++ pypy/branch/src-newobjectmodel/pypy/objspace/std/stdtypedef.py	Fri Jun  4 23:36:07 2004
@@ -21,7 +21,7 @@
     def mro(self, space):
         assert len(self.bases) <= 1
         if self.bases:
-            return [self] + self.bases[0].mro()
+            return [self] + self.bases[0].mro(space)
         else:
             return [self]
 



More information about the Pypy-commit mailing list