[pypy-svn] r72889 - pypy/trunk/pypy/interpreter

arigo at codespeak.net arigo at codespeak.net
Fri Mar 26 12:01:44 CET 2010


Author: arigo
Date: Fri Mar 26 12:01:42 2010
New Revision: 72889

Modified:
   pypy/trunk/pypy/interpreter/pyopcode.py
Log:
Ah ah.  Having some other test than pypy.objspace.flow
detect this one would be kind of nice...


Modified: pypy/trunk/pypy/interpreter/pyopcode.py
==============================================================================
--- pypy/trunk/pypy/interpreter/pyopcode.py	(original)
+++ pypy/trunk/pypy/interpreter/pyopcode.py	Fri Mar 26 12:01:42 2010
@@ -1004,7 +1004,7 @@
     def LOOKUP_METHOD(self, nameindex, next_instr):
         # overridden by faster version in the standard object space.
         space = self.space
-        w_obj = slef.popvalue()
+        w_obj = self.popvalue()
         w_name = self.getname_w(nameindex)
         w_value = space.getattr(w_obj, w_name)
         self.pushvalue(w_value)



More information about the Pypy-commit mailing list