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