[pypy-commit] pypy numpypy-out: clean up gratuitous 'print' in tests

mattip noreply at buildbot.pypy.org
Sun Feb 19 00:36:53 CET 2012


Author: mattip
Branch: numpypy-out
Changeset: r52627:7b030dbc76bd
Date: 2012-02-19 01:36 +0200
http://bitbucket.org/pypy/pypy/changeset/7b030dbc76bd/

Log:	clean up gratuitous 'print' in tests

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
@@ -1375,8 +1375,6 @@
         a = array([[1, 2], [3, 4], [5, 6], [7, 8],
                    [9, 10], [11, 12], [13, 14]])
         b = a[::2]
-        print a
-        print b
         assert (b == [[1, 2], [5, 6], [9, 10], [13, 14]]).all()
         c = b + b
         assert c[1][1] == 12


More information about the pypy-commit mailing list