[pypy-svn] r31510 - pypy/dist/pypy/interpreter

mwh at codespeak.net mwh at codespeak.net
Tue Aug 22 21:20:21 CEST 2006


Author: mwh
Date: Tue Aug 22 21:20:19 2006
New Revision: 31510

Modified:
   pypy/dist/pypy/interpreter/function.py
Log:
oops, fix silly breakage


Modified: pypy/dist/pypy/interpreter/function.py
==============================================================================
--- pypy/dist/pypy/interpreter/function.py	(original)
+++ pypy/dist/pypy/interpreter/function.py	Tue Aug 22 21:20:19 2006
@@ -345,7 +345,7 @@
                 if w_firstarg is None:
                     instdescr = "nothing"
                 else:
-                    instname = self.abstract_getclass(space, w_firstarg).getname(space,"")
+                    instname = space.abstract_getclass(w_firstarg).getname(space,"")
                     if instname:
                         instname += " "
                     instdescr = "%sinstance" %instname



More information about the Pypy-commit mailing list