[pypy-commit] pypy nupypy-axis-arg-check: remove debug cruft

mattip noreply at buildbot.pypy.org
Sat Jun 16 22:08:50 CEST 2012


Author: mattip <matti.picus at gmail.com>
Branch: nupypy-axis-arg-check
Changeset: r55696:1ece63c9c763
Date: 2012-06-15 18:06 +0300
http://bitbucket.org/pypy/pypy/changeset/1ece63c9c763/

Log:	remove debug cruft

diff --git a/pypy/module/micronumpy/test/test_numarray.py b/pypy/module/micronumpy/test/test_numarray.py
--- a/pypy/module/micronumpy/test/test_numarray.py
+++ b/pypy/module/micronumpy/test/test_numarray.py
@@ -670,9 +670,6 @@
         a = array([True, False, True, False], dtype="?")
         b = array([True, True, False, False], dtype="?")
         c = a + b
-        print 'c.dtype',c.dtype
-        print 'c',c,'a',a,'b',b
-        print 'a+b',a+b
         for i in range(4):
             assert c[i] == bool(a[i] + b[i])
 


More information about the pypy-commit mailing list