From c07de54b9c6405640bbe1e2c30471ed5a9b8620c Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner <inform@tiker.net> Date: Fri, 22 Mar 2013 13:49:18 -0400 Subject: [PATCH] Fix Py3 print screw-up. --- test/test_clmath.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_clmath.py b/test/test_clmath.py index 6164ebe8..1425cc46 100644 --- a/test/test_clmath.py +++ b/test/test_clmath.py @@ -226,7 +226,7 @@ def test_bessel(ctx_factory): else: use_pyfmmlib = True - print "PYFMMLIB", use_pyfmmlib + print("PYFMMLIB", use_pyfmmlib) if use_pyfmmlib: a = np.logspace(-3, 3, 10**6) -- GitLab