Llama-3.1-8B-DALv0.1
/
venv
/lib
/python3.12
/site-packages
/numpy
/f2py
/tests
/test_quoted_character.py
"""See https://github.com/numpy/numpy/pull/10676. | |
""" | |
import sys | |
import pytest | |
from . import util | |
class TestQuotedCharacter(util.F2PyTest): | |
sources = [util.getpath("tests", "src", "quoted_character", "foo.f")] | |
def test_quoted_character(self): | |
assert self.module.foo() == (b"'", b'"', b";", b"!", b"(", b")") | |