[pypy-svn] r50698 - pypy/dist/pypy/objspace

cfbolz at codespeak.net cfbolz at codespeak.net
Thu Jan 17 11:24:56 CET 2008


Author: cfbolz
Date: Thu Jan 17 11:24:55 2008
New Revision: 50698

Modified:
   pypy/dist/pypy/objspace/reflective.py
Log:
don't wrap call_args either


Modified: pypy/dist/pypy/objspace/reflective.py
==============================================================================
--- pypy/dist/pypy/objspace/reflective.py	(original)
+++ pypy/dist/pypy/objspace/reflective.py	Thu Jan 17 11:24:55 2008
@@ -25,7 +25,7 @@
 
 
 def proxymaker(space, opname, parentfn):
-    if opname == "wrap":
+    if opname in ["wrap", "call_args"]:
         return parentfn # no way to override wrapping for now
     elif opname == "newdict": # grr grr kwargs
         def fn(track_builtin_shadowing=False):



More information about the Pypy-commit mailing list