fparser.one.parsefortran ======================== .. py:module:: fparser.one.parsefortran .. autoapi-nested-parse:: Provides FortranParser. Classes ------- .. autoapisummary:: fparser.one.parsefortran.FortranParser Module Contents --------------- .. py:class:: FortranParser(reader, ignore_comments=True) Parser of FortranReader structure. Use .parse() method for parsing, parsing result is saved in .block attribute. .. py:attribute:: cache .. py:attribute:: reader .. py:attribute:: ignore_comments :value: True .. py:method:: get_item() Retrieves the next item from the reader. .. py:method:: put_item(item) Pushes the given item to the reader. .. py:method:: parse() Parses the program specified in the reader object. .. py:method:: analyze() Attempts to analyse the parsed Fortran. It is not clear what for.