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

pedronis at codespeak.net pedronis at codespeak.net
Thu Feb 22 14:36:31 CET 2007


Author: pedronis
Date: Thu Feb 22 14:36:30 2007
New Revision: 39312

Modified:
   pypy/dist/pypy/objspace/taint.py
Log:
double wrap



Modified: pypy/dist/pypy/objspace/taint.py
==============================================================================
--- pypy/dist/pypy/objspace/taint.py	(original)
+++ pypy/dist/pypy/objspace/taint.py	Thu Feb 22 14:36:30 2007
@@ -129,7 +129,7 @@
     unwrap_spec=[gateway.ObjSpace, gateway.W_Root, 'args_w'])
 
 def taint_atomic(space, w_callable):
-    meth = Method(space, space.wrap(space.w_fn_taint_atomic_function),
+    meth = Method(space, space.w_fn_taint_atomic_function,
                   w_callable, space.type(w_callable))
     return space.wrap(meth)
 app_taint_atomic = gateway.interp2app(taint_atomic)



More information about the Pypy-commit mailing list