summaryrefslogtreecommitdiff
path: root/numpy/f2py/tests/test_semicolon_split.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2018-03-08 13:20:19 -0700
committerCharles Harris <charlesr.harris@gmail.com>2018-03-08 15:28:40 -0700
commit27b8e54598a325b53fc73b2017ef5e2272f3e5f4 (patch)
treef72c4c10cdd44df371d2c40ece7a6761e71dbec8 /numpy/f2py/tests/test_semicolon_split.py
parent0311fa97057979384f5cc182d325ad6042e6b363 (diff)
downloadnumpy-27b8e54598a325b53fc73b2017ef5e2272f3e5f4.tar.gz
MAINT: Hard tab and whitespace cleanup.
Diffstat (limited to 'numpy/f2py/tests/test_semicolon_split.py')
-rw-r--r--numpy/f2py/tests/test_semicolon_split.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/numpy/f2py/tests/test_semicolon_split.py b/numpy/f2py/tests/test_semicolon_split.py
index d844e2eae..2b0f32727 100644
--- a/numpy/f2py/tests/test_semicolon_split.py
+++ b/numpy/f2py/tests/test_semicolon_split.py
@@ -9,14 +9,14 @@ class TestMultiline(util.F2PyTest):
code = """
python module {module}
usercode '''
-void foo(int* x) {{
+void foo(int* x) {{
char dummy = ';';
- *x = 42;
+ *x = 42;
}}
'''
interface
subroutine foo(x)
- intent(c) foo
+ intent(c) foo
integer intent(out) :: x
end subroutine foo
end interface
@@ -37,11 +37,11 @@ void foo(int* x) {{
'''
interface
subroutine foo(x)
- intent(c) foo
+ intent(c) foo
integer intent(out) :: x
- callprotoargument int*
+ callprotoargument int*
callstatement {{ &
- ; &
+ ; &
x = 42; &
}}
end subroutine foo