1 | \input texinfo @c -*-texinfo-*-
|
---|
2 | @c %**start of header
|
---|
3 | @setfilename parser.info
|
---|
4 | @settitle Python Parser Module Reference
|
---|
5 | @setchapternewpage odd
|
---|
6 | @footnotestyle end
|
---|
7 | @c %**end of header
|
---|
8 |
|
---|
9 | @ifinfo
|
---|
10 | This file describes the interfaces
|
---|
11 | published by the optional @code{parser} module and gives examples of
|
---|
12 | how they may be used. It contains the same text as the chapter on the
|
---|
13 | @code{parser} module in the @cite{Python Library Reference}, but is
|
---|
14 | presented as a separate document.
|
---|
15 |
|
---|
16 | Copyright 1995-1996 by Fred L. Drake, Jr., Reston, Virginia, USA, and
|
---|
17 | Virginia Polytechnic Institute and State University, Blacksburg,
|
---|
18 | Virginia, USA. Portions of the software copyright 1991-1995 by
|
---|
19 | Stichting Mathematisch Centrum, Amsterdam, The Netherlands. Copying is
|
---|
20 | permitted under the terms associated with the main Python distribution,
|
---|
21 | with the additional restriction that this additional notice be included
|
---|
22 | and maintained on all distributed copies.
|
---|
23 |
|
---|
24 | All Rights Reserved
|
---|
25 |
|
---|
26 | Permission to use, copy, modify, and distribute this software and its
|
---|
27 | documentation for any purpose and without fee is hereby granted,
|
---|
28 | provided that the above copyright notice appear in all copies and that
|
---|
29 | both that copyright notice and this permission notice appear in
|
---|
30 | supporting documentation, and that the names of Fred L. Drake, Jr. and
|
---|
31 | Virginia Polytechnic Institute and State University not be used in
|
---|
32 | advertising or publicity pertaining to distribution of the software
|
---|
33 | without specific, written prior permission.
|
---|
34 |
|
---|
35 | FRED L. DRAKE, JR. AND VIRGINIA POLYTECHNIC INSTITUTE AND STATE
|
---|
36 | UNIVERSITY DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
---|
37 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
---|
38 | EVENT SHALL FRED L. DRAKE, JR. OR VIRGINIA POLYTECHNIC INSTITUTE AND
|
---|
39 | STATE UNIVERSITY BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
|
---|
40 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
|
---|
41 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
---|
42 | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
---|
43 | PERFORMANCE OF THIS SOFTWARE.
|
---|
44 | @end ifinfo
|
---|
45 |
|
---|
46 | @titlepage
|
---|
47 | @title Python Parser Module Reference
|
---|
48 | @author Fred L. Drake, Jr.
|
---|
49 |
|
---|
50 | @c The following two commands start the copyright page.
|
---|
51 | @page
|
---|
52 | @vskip 0pt plus 1filll
|
---|
53 | Copyright 1995-1996 by Fred L. Drake, Jr., Reston, Virginia, USA, and
|
---|
54 | Virginia Polytechnic Institute and State University, Blacksburg,
|
---|
55 | Virginia, USA. Portions of the software copyright 1991-1995 by
|
---|
56 | Stichting Mathematisch Centrum, Amsterdam, The Netherlands. Copying is
|
---|
57 | permitted under the terms associated with the main Python distribution,
|
---|
58 | with the additional restriction that this additional notice be included
|
---|
59 | and maintained on all distributed copies.
|
---|
60 |
|
---|
61 | @center All Rights Reserved
|
---|
62 |
|
---|
63 | Permission to use, copy, modify, and distribute this software and its
|
---|
64 | documentation for any purpose and without fee is hereby granted,
|
---|
65 | provided that the above copyright notice appear in all copies and that
|
---|
66 | both that copyright notice and this permission notice appear in
|
---|
67 | supporting documentation, and that the names of Fred L. Drake, Jr. and
|
---|
68 | Virginia Polytechnic Institute and State University not be used in
|
---|
69 | advertising or publicity pertaining to distribution of the software
|
---|
70 | without specific, written prior permission.
|
---|
71 |
|
---|
72 | FRED L. DRAKE, JR. AND VIRGINIA POLYTECHNIC INSTITUTE AND STATE
|
---|
73 | UNIVERSITY DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
---|
74 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
---|
75 | EVENT SHALL FRED L. DRAKE, JR. OR VIRGINIA POLYTECHNIC INSTITUTE AND
|
---|
76 | STATE UNIVERSITY BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
|
---|
77 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
|
---|
78 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
---|
79 | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
---|
80 | PERFORMANCE OF THIS SOFTWARE.
|
---|
81 | @end titlepage
|
---|
82 |
|
---|
83 |
|
---|
84 | @node Top, Overview, (dir), (dir)
|
---|
85 | @top The Python Parser Module
|
---|
86 |
|
---|
87 | @ifinfo
|
---|
88 | This file describes the interfaces
|
---|
89 | published by the optional @code{parser} module and gives examples of
|
---|
90 | how they may be used. It contains the same text as the chapter on the
|
---|
91 | @code{parser} module in the @cite{Python Library Reference}, but is
|
---|
92 | presented as a separate document.
|
---|
93 |
|
---|
94 | This version corresponds to Python version 1.4 (1 Sept. 1996).
|
---|
95 |
|
---|
96 | @end ifinfo
|
---|
97 |
|
---|
98 | @c placeholder for the master menu -- patched by texinfo-all-menus-update
|
---|
99 | @menu
|
---|
100 | @end menu
|
---|