blob: 170d9d738609abb94897d5aee141ad0763f7724a [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) \\
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
24Copyright \copyright{} 1995-1996 by Fred L. Drake, Jr. and Virginia
25Polytechnic Institute and State University, Blacksburg, Virginia, USA.
26Portions of the software copyright 1991-1995 by Stichting Mathematisch
27Centrum, Amsterdam, The Netherlands. Copying is permitted under the
28terms associated with the main Python distribution, with the
29additional restriction that this additional notice be included and
30maintained on all distributed copies.
31
32\begin{center}
33All Rights Reserved
34\end{center}
35
36Permission to use, copy, modify, and distribute this software and its
37documentation for any purpose and without fee is hereby granted,
38provided that the above copyright notice appear in all copies and that
39both that copyright notice and this permission notice appear in
40supporting documentation, and that the names of Fred L. Drake, Jr. and
41Virginia Polytechnic Institute and State University not be used in
42advertising or publicity pertaining to distribution of the software
43without specific, written prior permission.
44
45FRED L. DRAKE, JR. AND VIRGINIA POLYTECHNIC INSTITUTE AND STATE
46UNIVERSITY DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
47INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
48EVENT SHALL FRED L. DRAKE, JR. OR VIRGINIA POLYTECHNIC INSTITUTE AND
49STATE UNIVERSITY BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
50DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
51PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
52TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
53PERFORMANCE OF THIS SOFTWARE.
54
55\begin{abstract}
56
57\noindent
58The \emph{Python Parser Module Reference} describes the interfaces
59published by the optional \code{parser} module and gives examples of
60how 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
62presented as a separate document.
63
64This manual assumes basic knowledge about the Python language. For an
65informal introduction to Python, see the {\em Python Tutorial}; the
66Python Reference Manual remains the highest authority on syntactic and
67semantic questions.
68
69\end{abstract}
70
71\pagebreak
72\pagenumbering{arabic}
73
74\chapter{Parser Module Reference}
75\input{libparser}
76
77\end{document}