[pypy-svn] r54286 - pypy/branch/faster-binop/pypy/objspace/std

arigo at codespeak.net arigo at codespeak.net
Wed Apr 30 19:10:52 CEST 2008


Author: arigo
Date: Wed Apr 30 19:10:51 2008
New Revision: 54286

Modified:
   pypy/branch/faster-binop/pypy/objspace/std/objspace.py
Log:
Typo.


Modified: pypy/branch/faster-binop/pypy/objspace/std/objspace.py
==============================================================================
--- pypy/branch/faster-binop/pypy/objspace/std/objspace.py	(original)
+++ pypy/branch/faster-binop/pypy/objspace/std/objspace.py	Wed Apr 30 19:10:51 2008
@@ -722,7 +722,7 @@
 
         w_descr = self.lookup(w_obj, '__getattr__')
         if w_descr is not None:
-            return space.get_and_call_function(w_descr, w_obj, w_name)
+            return self.get_and_call_function(w_descr, w_obj, w_name)
         elif e is not None:
             raise e
         else:



More information about the Pypy-commit mailing list