diff options
author | Robert Kern <robert.kern@gmail.com> | 2007-12-16 05:23:02 +0000 |
---|---|---|
committer | Robert Kern <robert.kern@gmail.com> | 2007-12-16 05:23:02 +0000 |
commit | bd16a4fdf861f02b51a27df2b9bb0494fd24bb0f (patch) | |
tree | 9131d7b707406338490271b44c64bb43d559d44a /numpy/f2py/lib/parser/block_statements.py | |
parent | e5789a3b032fccd3a1245f1ecbc311a22c41da06 (diff) | |
download | numpy-bd16a4fdf861f02b51a27df2b9bb0494fd24bb0f.tar.gz |
Interfaces have attributes.
Diffstat (limited to 'numpy/f2py/lib/parser/block_statements.py')
-rw-r--r-- | numpy/f2py/lib/parser/block_statements.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/f2py/lib/parser/block_statements.py b/numpy/f2py/lib/parser/block_statements.py index 860212fa5..734ce2bb4 100644 --- a/numpy/f2py/lib/parser/block_statements.py +++ b/numpy/f2py/lib/parser/block_statements.py @@ -417,7 +417,7 @@ class EndInterface(EndStatement): match = re.compile(r'end\s*interface\s*\w*\Z', re.I).match blocktype = 'interface' -class Interface(BeginStatement, HasImplicitStmt, HasUseStmt, +class Interface(BeginStatement, HasAttributes, HasImplicitStmt, HasUseStmt, HasModuleProcedures, AccessSpecs ): """ |