diff options
author | Rohit Goswami <rog32@hi.is> | 2021-11-28 14:05:28 +0000 |
---|---|---|
committer | Rohit Goswami <rog32@hi.is> | 2021-11-28 14:05:28 +0000 |
commit | 6af83ae81d4ad15f178d9f6d3256bd4535613f6b (patch) | |
tree | ab1f972c865211a2f556f6368d9207568a81c2d0 /numpy/f2py/tests/test_string.py | |
parent | 424eff16588d02bd0247d9074ec3c2f2b9f1e41f (diff) | |
download | numpy-6af83ae81d4ad15f178d9f6d3256bd4535613f6b.tar.gz |
STY: F2PY tests shouldn't print
Diffstat (limited to 'numpy/f2py/tests/test_string.py')
-rw-r--r-- | numpy/f2py/tests/test_string.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/numpy/f2py/tests/test_string.py b/numpy/f2py/tests/test_string.py index ee0e1a54b..3a945ff8b 100644 --- a/numpy/f2py/tests/test_string.py +++ b/numpy/f2py/tests/test_string.py @@ -34,19 +34,10 @@ C FILE: STRING.F CHARACTER*(*) C,D Cf2py intent(in) a,c Cf2py intent(inout) b,d - PRINT*, "A=",A - PRINT*, "B=",B - PRINT*, "C=",C - PRINT*, "D=",D - PRINT*, "CHANGE A,B,C,D" A(1:1) = 'A' B(1:1) = 'B' C(1:1) = 'C' D(1:1) = 'D' - PRINT*, "A=",A - PRINT*, "B=",B - PRINT*, "C=",C - PRINT*, "D=",D END C END OF FILE STRING.F """ |