diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2015-07-25 23:22:12 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-07-25 23:22:12 -0600 |
commit | 0fa1a9fa0a54fce6e741333308bdafa83c0663b2 (patch) | |
tree | 96ef2d826482ab52974efca8bfcf4c1940f3507b /numpy/f2py/tests/test_regression.py | |
parent | a0121573e6685f09e5f613280d616070b8ff99cb (diff) | |
download | numpy-0fa1a9fa0a54fce6e741333308bdafa83c0663b2.tar.gz |
STY: PEP8 fixes in numpy/f2py/tests.
Diffstat (limited to 'numpy/f2py/tests/test_regression.py')
-rw-r--r-- | numpy/f2py/tests/test_regression.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/f2py/tests/test_regression.py b/numpy/f2py/tests/test_regression.py index 9bd3f3fe3..b30af0c4c 100644 --- a/numpy/f2py/tests/test_regression.py +++ b/numpy/f2py/tests/test_regression.py @@ -8,9 +8,11 @@ from numpy.testing import dec, assert_raises, assert_equal import util + def _path(*a): return os.path.join(*((os.path.dirname(__file__),) + a)) + class TestIntentInOut(util.F2PyTest): # Check that intent(in out) translates as intent(inout) sources = [_path('src', 'regression', 'inout.f90')] |