Author: Alex Gaynor <[email protected]>
Branch: numpy-exp
Changeset: r44224:d305f5319141
Date: 2011-05-16 16:37 -0500
http://bitbucket.org/pypy/pypy/changeset/d305f5319141/

Log:    Small cleanup.

diff --git a/pypy/module/micronumpy/interp_ufuncs.py 
b/pypy/module/micronumpy/interp_ufuncs.py
--- a/pypy/module/micronumpy/interp_ufuncs.py
+++ b/pypy/module/micronumpy/interp_ufuncs.py
@@ -16,8 +16,8 @@
     signature = Signature()
     @unwrap_spec(larray=BaseArray, rarray=BaseArray)
     def impl(space, larray, rarray):
-        new_sig = larray.signature.transition(signature)
-        w_res = Call2(func, larray, rarray, 
rarray.signature.transition(new_sig))
+        new_sig = 
larray.signature.transition(signature).transition(rarray.signature)
+        w_res = Call2(func, larray, rarray, new_sig)
         larray.invalidates.append(w_res)
         rarray.invalidates.append(w_res)
         return w_res
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to