[pypy-commit] pypy numpy-back-to-applevel: remove print

fijal noreply at buildbot.pypy.org
Fri Jan 27 20:08:18 CET 2012


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: numpy-back-to-applevel
Changeset: r51860:b6f8f63b46ec
Date: 2012-01-27 21:07 +0200
http://bitbucket.org/pypy/pypy/changeset/b6f8f63b46ec/

Log:	remove print

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
@@ -1453,7 +1453,6 @@
         from _numpypy import arange
         assert (arange(3).ravel() == arange(3)).all()
         assert (arange(6).reshape(2, 3).ravel() == arange(6)).all()
-        print arange(6).reshape(2, 3).T.ravel()
         assert (arange(6).reshape(2, 3).T.ravel() == [0, 3, 1, 4, 2, 5]).all()
 
     def test_take(self):


More information about the pypy-commit mailing list