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