Author: Justin Peel <notmuchtot...@gmail.com>
Branch: 
Changeset: r45481:d16e590f593a
Date: 2011-07-10 23:26 -0600
http://bitbucket.org/pypy/pypy/changeset/d16e590f593a/

Log:    Fixed a line in numpy array's dot method

diff --git a/pypy/module/micronumpy/interp_numarray.py 
b/pypy/module/micronumpy/interp_numarray.py
--- a/pypy/module/micronumpy/interp_numarray.py
+++ b/pypy/module/micronumpy/interp_numarray.py
@@ -199,7 +199,6 @@
         if isinstance(w_other, BaseArray):
             return self.descr_mul(space, w_other).descr_sum(space)
         else:
-            w_other = FloatWrapper(space.float_w(w_other))
             return self.descr_mul(space, w_other)
 
     def get_concrete(self):
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to