Guido van Rossum | 16d27e3 | 1996-08-21 16:28:53 +0000 | [diff] [blame^] | 1 | \documentstyle[twoside,10pt,myformat]{report} |
| 2 | |
| 3 | %% This manual does not supplement the chapter from the Python |
| 4 | %% Library Reference, but only allows formatting of the parser module |
| 5 | %% component of that document as a separate document, and was created |
| 6 | %% primarily to ease review of the formatted document during authoring. |
| 7 | |
| 8 | \title{Python Parser Module Reference} |
| 9 | \author{ |
| 10 | Fred L. Drake, Jr. \\ |
| 11 | Corporation for National Research Initiatives (CNRI) \\ |
| 12 | 1895 Preston White Drive, Reston, Va 20191, USA \\ |
| 13 | E-mail: {\tt fdrake@cnri.reston.va.us}, {\tt fdrake@intr.net} |
| 14 | } |
| 15 | |
| 16 | \date{August 20th, 1996 \\ Release 1.4} |
| 17 | |
| 18 | \begin{document} |
| 19 | |
| 20 | \pagenumbering{roman} |
| 21 | |
| 22 | \maketitle |
| 23 | |
| 24 | Copyright \copyright{} 1995-1996 by Fred L. Drake, Jr. and Virginia |
| 25 | Polytechnic Institute and State University, Blacksburg, Virginia, USA. |
| 26 | Portions of the software copyright 1991-1995 by Stichting Mathematisch |
| 27 | Centrum, Amsterdam, The Netherlands. Copying is permitted under the |
| 28 | terms associated with the main Python distribution, with the |
| 29 | additional restriction that this additional notice be included and |
| 30 | maintained on all distributed copies. |
| 31 | |
| 32 | \begin{center} |
| 33 | All Rights Reserved |
| 34 | \end{center} |
| 35 | |
| 36 | Permission to use, copy, modify, and distribute this software and its |
| 37 | documentation for any purpose and without fee is hereby granted, |
| 38 | provided that the above copyright notice appear in all copies and that |
| 39 | both that copyright notice and this permission notice appear in |
| 40 | supporting documentation, and that the names of Fred L. Drake, Jr. and |
| 41 | Virginia Polytechnic Institute and State University not be used in |
| 42 | advertising or publicity pertaining to distribution of the software |
| 43 | without specific, written prior permission. |
| 44 | |
| 45 | FRED L. DRAKE, JR. AND VIRGINIA POLYTECHNIC INSTITUTE AND STATE |
| 46 | UNIVERSITY DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 47 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO |
| 48 | EVENT SHALL FRED L. DRAKE, JR. OR VIRGINIA POLYTECHNIC INSTITUTE AND |
| 49 | STATE UNIVERSITY BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL |
| 50 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 51 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER |
| 52 | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| 53 | PERFORMANCE OF THIS SOFTWARE. |
| 54 | |
| 55 | \begin{abstract} |
| 56 | |
| 57 | \noindent |
| 58 | The \emph{Python Parser Module Reference} describes the interfaces |
| 59 | published by the optional \code{parser} module and gives examples of |
| 60 | how they may be used. It contains the same text as the chapter on the |
| 61 | \code{parser} module in the \emph{Python Library Reference}, but is |
| 62 | presented as a separate document. |
| 63 | |
| 64 | This manual assumes basic knowledge about the Python language. For an |
| 65 | informal introduction to Python, see the {\em Python Tutorial}; the |
| 66 | Python Reference Manual remains the highest authority on syntactic and |
| 67 | semantic questions. |
| 68 | |
| 69 | \end{abstract} |
| 70 | |
| 71 | \pagebreak |
| 72 | \pagenumbering{arabic} |
| 73 | |
| 74 | \chapter{Parser Module Reference} |
| 75 | \input{libparser} |
| 76 | |
| 77 | \end{document} |