[Numpy-svn] r3889 - trunk/numpy/f2py/lib/parser

numpy-svn at scipy.org numpy-svn at scipy.org
Thu Jul 19 07:04:35 EDT 2007


Author: pearu
Date: 2007-07-19 06:04:25 -0500 (Thu, 19 Jul 2007)
New Revision: 3889

Modified:
   trunk/numpy/f2py/lib/parser/doc.txt
Log:
update fortran parser docs.

Modified: trunk/numpy/f2py/lib/parser/doc.txt
===================================================================
--- trunk/numpy/f2py/lib/parser/doc.txt	2007-07-19 09:45:27 UTC (rev 3888)
+++ trunk/numpy/f2py/lib/parser/doc.txt	2007-07-19 11:04:25 UTC (rev 3889)
@@ -1,8 +1,27 @@
 .. -*- rest -*-
 
-Created: September 2006
-Author: Pearu Peterson <pearu.peterson at gmail.com>
+======================
+Fortran parser package
+======================
 
+:Author:
+  Pearu Peterson <pearu.peterson at gmail.com>
+:Created: September 2006
+
+
+.. contents:: Table of Contents
+
+Overview
+========
+
+The Fortran parser package is a Python implementation
+of Fortran 66/77/90/95/2003 language parser. The code
+is under NumPy SVN tree: `numpy/f2py/lib/parser/`.
+The Fortran language syntax rules are defined in `Fortran2003.py`,
+the rules are taken from the following ISO/IEC 1539 working draft:
+http://j3-fortran.org/doc/2003_Committee_Draft/04-007.pdf.
+
+
 Fortran parser package structure
 ================================
 
@@ -66,7 +85,6 @@
 This file contains tools for reading Fortran codes from file and string objects.
 
 To read Fortran code from a file, use `FortranFileReader` class.
-
 `FortranFileReader` class is iterator over Fortran code lines
 and is derived from `FortranReaderBase` class.
 It automatically handles the line continuations and comments, as




More information about the Numpy-svn mailing list