diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2007-05-14 10:20:41 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2007-05-14 10:20:41 +0000 |
commit | 0176d3361df57e16270ce6ee480d3843c02d1c6a (patch) | |
tree | 6942db970ea60f361b016e5c95bd4f98bfabfe90 | |
parent | 1135754f3a745b8d25b958cbb57f401370131640 (diff) | |
download | numpy-0176d3361df57e16270ce6ee480d3843c02d1c6a.tar.gz |
Fix doc rest formatting.
-rw-r--r-- | numpy/f2py/lib/parser/doc.txt | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/numpy/f2py/lib/parser/doc.txt b/numpy/f2py/lib/parser/doc.txt index 464bd7243..df476daed 100644 --- a/numpy/f2py/lib/parser/doc.txt +++ b/numpy/f2py/lib/parser/doc.txt @@ -311,9 +311,9 @@ and methods: * .tostr() - return string representation of Fortran type declaration * .astypedecl() - pure type declaration instance, it has no .entity_decls - and .attrspec. + and .attrspec. * .analyze() - processes .entity_decls and .attsspec attributes and adds - Variable instance to .parent.a.variables dictionary. + Variable instance to .parent.a.variables dictionary. The following block statements are defined in block_statements.py: @@ -329,16 +329,16 @@ deriving them from the following classes: In summary, .a attribute may hold different information sets as follows: - BeginSource - .module, .external_subprogram, .blockdata - Module - .attributes, .implicit_rules, .use, .use_provides, .variables, - .type_decls, .module_subprogram, .module_data - PythonModule - .implicit_rules, .use, .use_provides - Program - .attributes, .implicit_rules, .use, .use_provides - BlockData - .implicit_rules, .use, .use_provides, .variables - Interface - .implicit_rules, .use, .use_provides, .module_procedures - Function, Subroutine - .implicit_rules, .attributes, .use, .use_statements, - .variables, .type_decls, .internal_subprogram - TypeDecl - .variables, .attributes + * BeginSource - .module, .external_subprogram, .blockdata + * Module - .attributes, .implicit_rules, .use, .use_provides, .variables, + .type_decls, .module_subprogram, .module_data + * PythonModule - .implicit_rules, .use, .use_provides + * Program - .attributes, .implicit_rules, .use, .use_provides + * BlockData - .implicit_rules, .use, .use_provides, .variables + * Interface - .implicit_rules, .use, .use_provides, .module_procedures + * Function, Subroutine - .implicit_rules, .attributes, .use, .use_statements, + .variables, .type_decls, .internal_subprogram + * TypeDecl - .variables, .attributes Block statements have the following methods: |