/usr/local/lib64/python3.6/site-packages/numpy/f2py/tests
NameSizeModeActions
src/-0755rm
__pycache__/-0755rm
test_array_from_pyobj.py219770644editdlrm
test_assumed_shape.py15840644editdlrm
test_block_docstring.py6210644editdlrm
test_callback.py39870644editdlrm
test_common.py8020644editdlrm
test_compile_function.py43090644editdlrm
test_crackfortran.py27970644editdlrm
test_kind.py10120644editdlrm
test_mixed.py9110644editdlrm
test_parameter.py39100644editdlrm
test_quoted_character.py9270644editdlrm
test_regression.py6980644editdlrm
test_return_character.py39190644editdlrm
test_return_complex.py46150644editdlrm
test_return_integer.py45760644editdlrm
test_return_logical.py48430644editdlrm
test_return_real.py54020644editdlrm
test_semicolon_split.py15140644editdlrm
test_size.py12860644editdlrm
test_string.py6100644editdlrm
util.py96130644editdlrm
__init__.py00644editdlrm
Edit: /usr/local/lib64/python3.6/site-packages/numpy/f2py/tests/test_quoted_character.py (927B)
"""See https://github.com/numpy/numpy/pull/10676. """ import sys import pytest from numpy.testing import assert_equal from . import util class TestQuotedCharacter(util.F2PyTest): code = """ SUBROUTINE FOO(OUT1, OUT2, OUT3, OUT4, OUT5, OUT6) CHARACTER SINGLE, DOUBLE, SEMICOL, EXCLA, OPENPAR, CLOSEPAR PARAMETER (SINGLE="'", DOUBLE='"', SEMICOL=';', EXCLA="!", 1 OPENPAR="(", CLOSEPAR=")") CHARACTER OUT1, OUT2, OUT3, OUT4, OUT5, OUT6 Cf2py intent(out) OUT1, OUT2, OUT3, OUT4, OUT5, OUT6 OUT1 = SINGLE OUT2 = DOUBLE OUT3 = SEMICOL OUT4 = EXCLA OUT5 = OPENPAR OUT6 = CLOSEPAR RETURN END """ @pytest.mark.skipif(sys.platform=='win32', reason='Fails with MinGW64 Gfortran (Issue #9673)') def test_quoted_character(self): assert_equal(self.module.foo(), (b"'", b'"', b';', b'!', b'(', b')'))