diff options
author | Jaime <jaime.frio@gmail.com> | 2015-12-20 07:35:41 +0100 |
---|---|---|
committer | Jaime <jaime.frio@gmail.com> | 2015-12-20 07:35:41 +0100 |
commit | 144c34b8ecd051e05a93c6268290eadb1827afb0 (patch) | |
tree | c8a1a549e5a093a9433fe9a50a6e0e8bb5358ab1 /numpy/testing/utils.py | |
parent | e2bdaccba1a8691f9223b059b981b2890bb13b09 (diff) | |
parent | 8bc592fabf4a2b0bc76db996b1523330ba095be3 (diff) | |
download | numpy-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/testing/utils.py')
-rw-r--r-- | numpy/testing/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/testing/utils.py b/numpy/testing/utils.py index 00f7ce4d1..49d249339 100644 --- a/numpy/testing/utils.py +++ b/numpy/testing/utils.py @@ -1293,7 +1293,7 @@ def measure(code_str,times=1,label=None): -------- >>> etime = np.testing.measure('for i in range(1000): np.sqrt(i**2)', ... times=times) - >>> print "Time for a single execution : ", etime / times, "s" + >>> print("Time for a single execution : ", etime / times, "s") Time for a single execution : 0.005 s """ |