diff options
author | Sebastian Berg <sebastianb@nvidia.com> | 2023-02-09 11:30:54 +0100 |
---|---|---|
committer | Sebastian Berg <sebastianb@nvidia.com> | 2023-02-09 11:30:54 +0100 |
commit | c7661e8ee47f8c94bb5ba060bb4af49468dfda40 (patch) | |
tree | deb4fe88d9fe82626f4527eba0f6bd4b4cdf40b9 /numpy/f2py/tests/test_character.py | |
parent | 3aa60665601efdcbc49c54841a599e69a2cbd1bc (diff) | |
download | numpy-c7661e8ee47f8c94bb5ba060bb4af49468dfda40.tar.gz |
TST: Comment out spurious print in f2py test
Matti was wondering where it came from, so lets comment it out.
Diffstat (limited to 'numpy/f2py/tests/test_character.py')
-rw-r--r-- | numpy/f2py/tests/test_character.py | 7 |
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) |