summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2023-02-09 13:32:41 +0200
committerGitHub <noreply@github.com>2023-02-09 13:32:41 +0200
commita91a31e2ff22c3c6cbbc4bacca2d6d7a8fe6bdff (patch)
treebf54b2d68d5077b68f09428ca5e31f8ba7ba2508 /numpy
parent684aa6b4999c5f5a61b89344d651d3d51340f183 (diff)
parentc7661e8ee47f8c94bb5ba060bb4af49468dfda40 (diff)
downloadnumpy-a91a31e2ff22c3c6cbbc4bacca2d6d7a8fe6bdff.tar.gz
Merge pull request #23184 from seberg/f2py-no-test-print
TST: Comment out spurious print in f2py test
Diffstat (limited to 'numpy')
-rw-r--r--numpy/f2py/tests/test_character.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/numpy/f2py/tests/test_character.py b/numpy/f2py/tests/test_character.py
index b54b4d981..528e78fc6 100644
--- a/numpy/f2py/tests/test_character.py
+++ b/numpy/f2py/tests/test_character.py
@@ -457,9 +457,10 @@ class TestMiscCharacter(util.F2PyTest):
character(len=*), intent(in) :: x(:)
!f2py intent(out) x
integer :: i
- do i=1, size(x)
- print*, "x(",i,")=", x(i)
- end do
+ ! Uncomment for debug printing:
+ !do i=1, size(x)
+ ! print*, "x(",i,")=", x(i)
+ !end do
end subroutine {fprefix}_gh4519
pure function {fprefix}_gh3425(x) result (y)