We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6afe07f commit d756a53Copy full SHA for d756a53
projects/hello-f2py/hello_f2py/__init__.py
@@ -1 +0,0 @@
1
-from ._hello import hello
projects/hello-f2py/hello_f2py/_hello.pyf
@@ -1,12 +1,12 @@
! -*- f90 -*-
2
! Note: the context of this file is case sensitive.
3
4
-python module _hello ! in
+python module _hello ! in
5
interface ! in :_hello
6
subroutine hello(a) ! in :_hello:hello.f90
7
character*(*) intent(in) :: a
8
end subroutine hello
9
- end interface
+ end interface
10
end python module _hello
11
12
! This file was auto-generated with f2py (version:1.24.2).
projects/hello-f2py/tests/test_hello_f2py.py
@@ -2,6 +2,6 @@
def test_hello(capfd):
- hello('World')
+ hello("World")
captured = capfd.readouterr()
- assert captured.out == 'Hello, World!\n'
+ assert captured.out == "Hello, World!\n"
0 commit comments