diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2006-11-03 21:57:11 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2006-11-03 21:57:11 +0000 |
commit | ed184cde3c12fc43049951a60434df296e5725f3 (patch) | |
tree | fd2dfbac256e8ddad45b6ffd6f95f57dd053c6a6 /numpy/f2py/lib/parser/api.py | |
parent | df18ca848af515b961d50167646404e0d8db5eb8 (diff) | |
download | numpy-ed184cde3c12fc43049951a60434df296e5725f3.tar.gz |
F2PY G3: continued F2003 parser implementation and unittesting.
Diffstat (limited to 'numpy/f2py/lib/parser/api.py')
-rw-r--r-- | numpy/f2py/lib/parser/api.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/f2py/lib/parser/api.py b/numpy/f2py/lib/parser/api.py index bc99f94d7..476c142e5 100644 --- a/numpy/f2py/lib/parser/api.py +++ b/numpy/f2py/lib/parser/api.py @@ -11,6 +11,7 @@ Created: Oct 2006 ----- """ +import Fortran2003 # import all Statement classes: from base_classes import EndStatement from block_statements import * @@ -64,6 +65,7 @@ def parse(input, isfree=None, isstrict=None, include_dirs = None): Default contains current working directory and the directory of file name. """ + from parsefortran import FortranParser reader = get_reader(input, isfree, isstrict, include_dirs) parser = FortranParser(reader) parser.parse() |