diff options
author | Rohit Goswami <rog32@hi.is> | 2023-04-16 18:57:07 +0000 |
---|---|---|
committer | Rohit Goswami <rog32@hi.is> | 2023-04-16 18:57:07 +0000 |
commit | 6fe296cff6b31747232326511a42599e0a354ee3 (patch) | |
tree | fcf26866c006e1a0f844f60804dd234bb67d6e36 /doc/source/f2py/code | |
parent | d64838e04c201e00af66f89ff5c6c7c964bb6b10 (diff) | |
download | numpy-6fe296cff6b31747232326511a42599e0a354ee3.tar.gz |
MAINT,TST: No printing in f2py tests
Diffstat (limited to 'doc/source/f2py/code')
-rw-r--r-- | doc/source/f2py/code/ftype.f | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/f2py/code/ftype.f b/doc/source/f2py/code/ftype.f index cabbb9e2d..67d5a224b 100644 --- a/doc/source/f2py/code/ftype.f +++ b/doc/source/f2py/code/ftype.f @@ -4,6 +4,6 @@ C FILE: FTYPE.F Cf2py integer optional,intent(in) :: n = 13 REAL A,X COMMON /DATA/ A,X(3) - PRINT*, "IN FOO: N=",N," A=",A," X=[",X(1),X(2),X(3),"]" +C PRINT*, "IN FOO: N=",N," A=",A," X=[",X(1),X(2),X(3),"]" END C END OF FTYPE.F |