Fix an amazing number of typos & malformed sentences reported by Detlef
[python/dscho.git] / Demo / parser / parser.tex
blob1a6b296b1ac3f8a3d316dd5f4ee4ea488bedc7aa
1 \documentstyle[twoside,10pt,myformat]{report}
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.
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-5343, USA \\
13 E-mail: {\tt fdrake@cnri.reston.va.us}, {\tt fdrake@intr.net}
16 \date{September 3rd, 1996 \\ Release 1.4}
18 \begin{document}
20 \pagenumbering{roman}
22 \maketitle
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.
33 \begin{center}
34 All Rights Reserved
35 \end{center}
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.
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.
56 \begin{abstract}
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.
65 This manual assumes basic knowledge about the Python language. For an
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.
70 \end{abstract}
72 \pagebreak
73 \pagenumbering{arabic}
75 \chapter{Parser Module Reference}
76 \input{libparser}
78 \end{document}