summaryrefslogtreecommitdiff
path: root/numpy/ma/tests/test_old_ma.py
diff options
context:
space:
mode:
authorJaime <jaime.frio@gmail.com>2015-12-20 07:35:41 +0100
committerJaime <jaime.frio@gmail.com>2015-12-20 07:35:41 +0100
commit144c34b8ecd051e05a93c6268290eadb1827afb0 (patch)
treec8a1a549e5a093a9433fe9a50a6e0e8bb5358ab1 /numpy/ma/tests/test_old_ma.py
parente2bdaccba1a8691f9223b059b981b2890bb13b09 (diff)
parent8bc592fabf4a2b0bc76db996b1523330ba095be3 (diff)
downloadnumpy-144c34b8ecd051e05a93c6268290eadb1827afb0.tar.gz
Merge pull request #6867 from gfyoung/print_fixes
DOC: No Print Statements When Using print_function from __future__
Diffstat (limited to 'numpy/ma/tests/test_old_ma.py')
-rw-r--r--numpy/ma/tests/test_old_ma.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/ma/tests/test_old_ma.py b/numpy/ma/tests/test_old_ma.py
index a32f358c0..d9a93efd4 100644
--- a/numpy/ma/tests/test_old_ma.py
+++ b/numpy/ma/tests/test_old_ma.py
@@ -831,13 +831,13 @@ def eqmask(m1, m2):
# t = testta(n, f)
# t1 = testtb(n, f)
# t2 = testtc(n, f)
-# print f.test_name
-# print """\
+# print(f.test_name)
+# print("""\
#n = %7d
#numpy time (ms) %6.1f
#MA maskless ratio %6.1f
#MA masked ratio %6.1f
-#""" % (n, t*1000.0, t1/t, t2/t)
+#""" % (n, t*1000.0, t1/t, t2/t))
#def testta(n, f):
# x=np.arange(n) + 1.0