Author: mattip <matti.pi...@gmail.com>
Branch: 
Changeset: r80491:652865747e1a
Date: 2015-10-31 22:38 +1100
http://bitbucket.org/pypy/pypy/changeset/652865747e1a/

Log:    remove debug cruft

diff --git a/pypy/module/micronumpy/concrete.py 
b/pypy/module/micronumpy/concrete.py
--- a/pypy/module/micronumpy/concrete.py
+++ b/pypy/module/micronumpy/concrete.py
@@ -382,11 +382,9 @@
             t_elsize = dtype.elsize
             t_strides = strides[:]
             base = dtype.elsize
-            print 'start strides, shape, indx_array', strides, shape, 
indx_array
             for i in indx_array:
                 t_strides[i] = base
                 base *= shape[i]
-            print 'final strides', t_strides
             backstrides = calc_backstrides(t_strides, shape)
         order = support.get_order_as_CF(self.order, order)
         impl = ConcreteArray(shape, dtype, order, t_strides, backstrides)
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to