[pypy-svn] r34176 - pypy/branch/transparent-proxy/pypy/interpreter

fijal at codespeak.net fijal at codespeak.net
Sat Nov 4 15:56:55 CET 2006


Author: fijal
Date: Sat Nov  4 15:56:53 2006
New Revision: 34176

Modified:
   pypy/branch/transparent-proxy/pypy/interpreter/gateway.py
Log:
Small fix.


Modified: pypy/branch/transparent-proxy/pypy/interpreter/gateway.py
==============================================================================
--- pypy/branch/transparent-proxy/pypy/interpreter/gateway.py	(original)
+++ pypy/branch/transparent-proxy/pypy/interpreter/gateway.py	Sat Nov  4 15:56:53 2006
@@ -486,7 +486,7 @@
             raise OperationError(space.w_RuntimeError, 
                                  space.wrap("internal error: " + str(e))) 
         except DescrMismatch, e:
-            return scope_w[0].descr_call_mismatch(space,
+            return args.firstarg().descr_call_mismatch(space,
                                                   self.descrmismatch_op,
                                                   self.descr_reqcls,
                                                   args)



More information about the Pypy-commit mailing list