blob: 4ec83c4fecaef0e2333950a10bacccc5f710dbee [file] [log] [blame]
Fred Drakeacffaee1999-03-16 16:09:13 +00001\documentclass{howto}
2\usepackage{ltxmarkup}
3
4\title{Documenting Python}
5
6\input{boilerplate}
7
Fred Drakec7c9a641999-04-28 18:24:02 +00008% Now override the stuff that includes author information;
9% Guido did *not* write this one!
Fred Drakeacffaee1999-03-16 16:09:13 +000010
11\author{Fred L. Drake, Jr.}
12\authoraddress{
13 Corporation for National Research Initiatives (CNRI) \\
14 1895 Preston White Drive, Reston, Va 20191, USA \\
15 E-mail: \email{fdrake@acm.org}
16}
Fred Drakeacffaee1999-03-16 16:09:13 +000017
18
19\begin{document}
20
21\maketitle
22
23\begin{abstract}
24\noindent
25The Python language documentation has a substantial body of
26documentation, much of it contributed by various authors. The markup
27used for the Python documentation is based on \LaTeX{} and requires a
28significant set of macros written specifically for documenting Python.
29Maintaining the documentation requires substantial effort, in part
30because selecting the correct markup to use is not always easy.
31
32This document describes the document classes and special markup used
33in the Python documentation. Authors may use this guide, in
34conjunction with the template files provided with the
35distribution, to create or maintain whole documents or sections.
36\end{abstract}
37
38\tableofcontents
39
40
41\section{Introduction}
42
43 Python's documentation has long been considered to be good for a
44 free programming language. There are a number of reasons for this,
45 the most important being the early commitment of Python's creator,
46 Guido van Rossum, to providing documentation on the language and its
47 libraries, and the continuing involvement of the user community in
48 providing assistance for creating and maintaining documentation.
49
50 The involvement of the community takes many forms, from authoring to
Fred Drake7a737df1999-04-23 14:41:44 +000051 bug reports to just plain complaining when the documentation could
52 be more complete or easier to use. All of these forms of input from
53 the community have proved useful during the time I've been involved
54 in maintaining the documentation.
Fred Drakeacffaee1999-03-16 16:09:13 +000055
Fred Drake2c4e0091999-03-29 14:55:55 +000056 This document is aimed at authors and potential authors of
Fred Drake7a737df1999-04-23 14:41:44 +000057 documentation for Python. More specifically, it is for people
58 contributing to the standard documentation and developing additional
59 documents using the same tools as the standard documents. This
60 guide will be less useful for authors using the Python documentation
61 tools for topics other than Python, and less useful still for
62 authors not using the tools at all.
Fred Drakeacffaee1999-03-16 16:09:13 +000063
Fred Drake2c4e0091999-03-29 14:55:55 +000064 The material in this guide is intended to assist authors using the
65 Python documentation tools. It includes information on the source
66 distribution of the standard documentation, a discussion of the
Fred Drake7a737df1999-04-23 14:41:44 +000067 document types, reference material on the markup defined in the
68 document classes, a list of the external tools needed for processing
Fred Drake2c4e0091999-03-29 14:55:55 +000069 documents, and reference material on the tools provided with the
70 documentation resources. At the end, there is also a section
Fred Drake7a737df1999-04-23 14:41:44 +000071 discussing future directions for the Python documentation and where
72 to turn for more information.
Fred Drakeacffaee1999-03-16 16:09:13 +000073
74\section{Directory Structure}
75
76 The source distribution for the standard Python documentation
77 contains a large number of directories. While third-party documents
78 do not need to be placed into this structure or need to be placed
79 within a similar structure, it can be helpful to know where to look
80 for examples and tools when developing new documents using the
81 Python documentation tools. This section describes this directory
82 structure.
83
84 The documentation sources are usually placed within the Python
Fred Drake7a737df1999-04-23 14:41:44 +000085 source distribution as the top-level directory \file{Doc/}, but
86 are not dependent on the Python source distribution in any way.
Fred Drakeacffaee1999-03-16 16:09:13 +000087
88 The \file{Doc/} directory contains a few files and several
89 subdirectories. The files are mostly self-explanatory, including a
90 \file{README} and a \file{Makefile}. The directories fall into
91 three categories:
92
93 \begin{definitions}
94 \term{Document Sources}
95 The \LaTeX{} sources for each document are placed in a
96 separate directory. These directories are given short,
Fred Drake2f4bebd1999-04-28 16:43:11 +000097 three-character names:
98
99 \begin{tableii}{p{.75in}|p{3in}}{filenq}{Directory}{Document Title}
100 \lineii{api/}{\emph{The Python/C API}}
101 \lineii{doc/}{\emph{Documenting Python}}
102 \lineii{ext/}{\emph{Extending and Embedding the Python Interpreter}}
103 \lineii{lib/}{\emph{Python Library Reference}}
104 \lineii{mac/}{\emph{Macintosh Module Reference}}
105 \lineii{ref/}{\emph{Python Reference Manual}}
106 \lineii{tut/}{\emph{Python Tutorial}}
107 \end{tableii}
Fred Drakeacffaee1999-03-16 16:09:13 +0000108
109 \term{Format-Specific Output}
Fred Drake2c4e0091999-03-29 14:55:55 +0000110 Most output formats have a directory which contains a
Fred Drakeacffaee1999-03-16 16:09:13 +0000111 \file{Makefile} which controls the generation of that format
112 and provides storage for the formatted documents. The only
Fred Drake2c4e0091999-03-29 14:55:55 +0000113 variations within this category are the Portable Document
114 Format (PDF) and PostScript versions are placed in the
Fred Drake7a737df1999-04-23 14:41:44 +0000115 directories \file{paper-a4/} and \file{paper-letter/} (this
116 causes all the temporary files created by \LaTeX{} to be kept
117 in the same place for each paper size, where they can be more
118 easily ignored).
Fred Drakeacffaee1999-03-16 16:09:13 +0000119
Fred Drake2f4bebd1999-04-28 16:43:11 +0000120 \begin{tableii}{p{.75in}|p{3in}}{filenq}{Directory}{Output Formats}
121 \lineii{html/}{HTML output}
122 \lineii{info/}{GNU info output}
123 \lineii{paper-a4/}{PDF and PostScript, A4 paper}
124 \lineii{paper-letter/}{PDF and PostScript, US-Letter paper}
125 \end{tableii}
126
Fred Drakeacffaee1999-03-16 16:09:13 +0000127 \term{Supplemental Files}
128 Some additional directories are used to store supplemental
129 files used for the various processes. Directories are
130 included for the shared \LaTeX{} document classes, the
131 \LaTeX2HTML support, template files for various document
132 components, and the scripts used to perform various steps in
133 the formatting processes.
Fred Drake2f4bebd1999-04-28 16:43:11 +0000134
135 \begin{tableii}{p{.75in}|p{3in}}{filenq}{Directory}{Contents}
136 \lineii{perl/}{Support for \LaTeX2HTML processing}
137 \lineii{templates/}{Example files for source documents}
138 \lineii{texinputs/}{Style implementation for \LaTeX}
139 \lineii{tools/}{Custom processing scripts}
140 \end{tableii}
141
Fred Drakeacffaee1999-03-16 16:09:13 +0000142 \end{definitions}
143
Fred Drake2c4e0091999-03-29 14:55:55 +0000144
Fred Drakeadade921999-04-22 13:05:27 +0000145\section{\LaTeX{} Primer \label{latex-primer}}
Fred Drake2c4e0091999-03-29 14:55:55 +0000146
Fred Drakeadade921999-04-22 13:05:27 +0000147 This section is a brief introduction to \LaTeX{} concepts and
148 syntax, to provide authors enough information to author documents
149 productively without having to become ``\TeX{}nicians.''
150
151 \LaTeX{} documents contain two parts: the preamble and the body.
152 The preamble is used to specify certain metadata about the document
153 itself, such as the title, the list of authors, the date, and the
154 \emph{class} the document belongs to. Additional information used
155 to control index generation and the use of bibliographic databases
Fred Drake7a737df1999-04-23 14:41:44 +0000156 can also be placed in the preamble. For most authors, the preamble
Fred Drakeadade921999-04-22 13:05:27 +0000157 can be most easily created by copying it from an existing document
158 and modifying a few key pieces of information.
159
160 The \dfn{class} of a document is used to place a document within a
161 broad category of documents and set some fundamental formatting
162 properties. For Python documentation, two classes are used: the
163 \code{manual} class and the \code{howto} class. These classes also
164 define the additional markup used to document Python concepts and
165 structures. Specific information about these classes is provided in
Fred Drake7a737df1999-04-23 14:41:44 +0000166 section \ref{classes}, ``Document Classes,'' below. The first thing
Fred Drakeadade921999-04-22 13:05:27 +0000167 in the preamble is the declaration of the document's class.
168
169 After the class declaration, a number of \emph{macros} are used to
170 provide further information about the document and setup any
Fred Drake7a737df1999-04-23 14:41:44 +0000171 additional markup that is needed. No output is generated from the
172 preamble; it is an error to include free text in the preamble
173 because it would cause output.
Fred Drakeadade921999-04-22 13:05:27 +0000174
175 The document body follows the preamble. This contains all the
176 printed components of the document marked up structurally.
177
178 XXX This section will discuss what the markup looks like, and
179 explain the difference between an environment and a macro.
Fred Drake2c4e0091999-03-29 14:55:55 +0000180
181
Fred Drakeadade921999-04-22 13:05:27 +0000182\section{Document Classes \label{classes}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000183
184 Two \LaTeX{} document classes are defined specifically for use with
185 the Python documentation. The \code{manual} class is for large
186 documents which are sectioned into chapters, and the \code{howto}
187 class is for smaller documents.
188
189 The \code{manual} documents are larger and are used for most of the
190 standard documents. This document class is based on the standard
191 \LaTeX{} \code{report} class and is formatted very much like a long
Fred Drakeadade921999-04-22 13:05:27 +0000192 technical report. The \emph{Python Reference Manual} is a good
Fred Drake7a737df1999-04-23 14:41:44 +0000193 example of a \code{manual} document, and the \emph{Python Library
194 Reference} is a large example.
Fred Drakeacffaee1999-03-16 16:09:13 +0000195
196 The \code{howto} documents are shorter, and don't have the large
197 structure of the \code{manual} documents. This class is based on
198 the standard \LaTeX{} \code{article} class and is formatted somewhat
199 like the Linux Documentation Project's ``HOWTO'' series as done
200 originally using the LinuxDoc software. The original intent for the
201 document class was that it serve a similar role as the LDP's HOWTO
202 series, but the applicability of the class turns out to be somewhat
203 more broad. This class is used for ``how-to'' documents (this
204 document is an example) and for shorter reference manuals for small,
205 fairly cohesive module libraries. Examples of the later use include
206 the standard \emph{Macintosh Library Modules} and \emph{Using
207 Kerberos from Python}, which contains reference material for an
208 extension package. These documents are roughly equivalent to a
209 single chapter from a larger work.
210
211
Fred Drake7a737df1999-04-23 14:41:44 +0000212\section{Special Markup Constructs}
Fred Drakeacffaee1999-03-16 16:09:13 +0000213
Fred Drake2c4e0091999-03-29 14:55:55 +0000214 The Python document classes define a lot of new environments and
215 macros. This section contains the reference material for these
216 facilities.
217
Fred Drakeacffaee1999-03-16 16:09:13 +0000218 \subsection{Information Units \label{info-units}}
219
Fred Drake2f4bebd1999-04-28 16:43:11 +0000220 XXX Explain terminology, or come up with something more ``lay.''
Fred Drakeacffaee1999-03-16 16:09:13 +0000221
Fred Drakeadade921999-04-22 13:05:27 +0000222 There are a number of environments used to describe specific
223 features provided by modules. Each environment requires
224 parameters needed to provide basic information about what is being
225 described, and the environment content should be the description.
226 Most of these environments make entries in the general index (if
227 one is being produced for the document); if no index entry is
228 desired, non-indexing variants are available for many of these
229 environments. The environments have names of the form
230 \code{\var{feature}desc}, and the non-indexing variants are named
231 \code{\var{feature}descni}. The available variants are explicitly
232 included in the list below.
233
234 For each of these environments, the first parameter, \var{name},
235 provides the name by which the feature is accessed.
236
237 Environments which describe features of objects within a module,
238 such as object methods or data attributes, allow an optional
239 \var{type name} parameter. When the feature is an attribute of
240 class instances, \var{type name} only needs to be given if the
241 class was not the most recently described class in the module; the
242 \var{name} value from the most recent \env{classdesc} is implied.
243 For features of built-in or extension types, the \var{type name}
Fred Drake7a737df1999-04-23 14:41:44 +0000244 value should always be provided. Another special case includes
245 methods and members of general ``protocols,'' such as the
246 formatter and writer protocols described for the
247 \module{formatter} module: these may be documented without any
248 specific implementation classes, and will always require the
249 \var{type name} parameter to be provided.
Fred Drakeadade921999-04-22 13:05:27 +0000250
251 \begin{envdesc}{datadesc}{\p{name}}
252 This environment is used to document global data in a module,
253 including both variables and values used as ``defined
254 constants.'' Class and object attributes are not documented
255 using this environment.
Fred Drakeacffaee1999-03-16 16:09:13 +0000256 \end{envdesc}
Fred Drake7a737df1999-04-23 14:41:44 +0000257 \begin{envdesc}{datadescni}{\p{name}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000258 Like \env{datadesc}, but without creating any index entries.
259 \end{envdesc}
260
Fred Drakeadade921999-04-22 13:05:27 +0000261 \begin{envdesc}{excdesc}{\p{name}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000262 Describe an exception. This may be either a string exception or
263 a class exception.
264 \end{envdesc}
265
Fred Drakeadade921999-04-22 13:05:27 +0000266 \begin{envdesc}{funcdesc}{\p{name}\p{parameters}}
267 Describe a module-level function. \var{parameters} should
268 not include the parentheses used in the call syntax. Object
269 methods are not documented using this environment. Bound object
270 methods placed in the module namespace as part of the public
271 interface of the module are documented using this, as they are
272 equivalent to normal functions for most purposes.
273
274 The description should include information about the parameters
275 required and how they are used (especially whether mutable
276 objects passed as parameters are modified), side effects, and
277 possible exceptions. A small example may be provided.
Fred Drakeacffaee1999-03-16 16:09:13 +0000278 \end{envdesc}
Fred Drakeadade921999-04-22 13:05:27 +0000279 \begin{envdesc}{funcdescni}{\p{name}\p{parameters}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000280 Like \env{funcdesc}, but without creating any index entries.
281 \end{envdesc}
282
Fred Drakeadade921999-04-22 13:05:27 +0000283 \begin{envdesc}{classdesc}{\p{name}\p{constructor parameters}}
284 Describe a class and its constructor. \var{constructor
285 parameters} should not include the \var{self} parameter or
286 the parentheses used in the call syntax.
Fred Drakeacffaee1999-03-16 16:09:13 +0000287 \end{envdesc}
288
Fred Drakeadade921999-04-22 13:05:27 +0000289 \begin{envdesc}{memberdesc}{\op{type name}\p{name}}
290 Describe an object data attribute. The description should
291 include information about the type of the data to be expected
292 and whether it may be changed directly.
Fred Drakeacffaee1999-03-16 16:09:13 +0000293 \end{envdesc}
Fred Drakeadade921999-04-22 13:05:27 +0000294 \begin{envdesc}{memberdescni}{\op{type name}\p{name}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000295 Like \env{memberdesc}, but without creating any index entries.
296 \end{envdesc}
297
Fred Drakeadade921999-04-22 13:05:27 +0000298 \begin{envdesc}{methoddesc}{\op{type name}\p{name}\p{parameters}}
299 Describe an object method. \var{parameters} should not include
300 the \var{self} parameter or the parentheses used in the call
301 syntax. The description should include similar information to
302 that described for \env{funcdesc}.
Fred Drakeacffaee1999-03-16 16:09:13 +0000303 \end{envdesc}
Fred Drakeadade921999-04-22 13:05:27 +0000304 \begin{envdesc}{methoddescni}{\op{type name}\p{name}\p{parameters}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000305 Like \env{methoddesc}, but without creating any index entries.
306 \end{envdesc}
307
308
309 \subsection{Inline Markup}
310
Fred Drake2f4bebd1999-04-28 16:43:11 +0000311
312 \begin{macrodesc}{bfcode}{\p{text}}
313 Like \macro{code}, but also makes the font bold-face.
314 \end{macrodesc}
315
316 \begin{macrodesc}{cdata}{\p{name}}
317 The name of a C-language variable.
318 \end{macrodesc}
319
320 \begin{macrodesc}{cfunction}{\p{name}}
321 The name of a C-language function. \var{name} should include the
322 function name and the trailing parentheses.
323 \end{macrodesc}
324
325 \begin{macrodesc}{character}{\p{char}}
326 A character when discussing the character rather than a one-byte
327 string value. The character will be typeset as with \macro{samp}.
328 \end{macrodesc}
329
330 \begin{macrodesc}{class}{\p{name}}
331 A class name; a dotted name may be used.
332 \end{macrodesc}
333
334 \begin{macrodesc}{code}{\p{text}}
335 A short code fragment or literal constant value. Typically, it
336 should not include any spaces since no quotation marks are
337 added.
338 \end{macrodesc}
339
340 \begin{macrodesc}{constant}{\p{name}}
341 The name of a ``defined'' constant. This may be a C-language
342 \code{\#define} or a Python variable that is not intended to be
343 changed.
344 \end{macrodesc}
345
346 \begin{macrodesc}{ctype}{\p{name}}
347 The name of a C \keyword{typedef} or structure. For structures
348 defined without a \keyword{typedef}, use \code{\e ctype\{struct
349 struct_tag\}} to make it clear that the \keyword{struct} is
350 required.
351 \end{macrodesc}
352
353 \begin{macrodesc}{deprecated}{\p{version}\p{what to do}}
354 Declare whatever is being described as being deprecated starting
355 with release \var{version}. The text given as \var{what to do}
356 should recommend something to use instead.
357 \end{macrodesc}
358
359 \begin{macrodesc}{dfn}{\p{term}}
360 Mark the defining instance of \var{term} in the text. (No index
361 entries are generated.)
362 \end{macrodesc}
363
364 \begin{macrodesc}{email}{\p{address}}
365 An email address. Note that this is \emph{not} hyperlinked in
366 any of the possible output formats.
367 \end{macrodesc}
368
369 \begin{macrodesc}{emph}{\p{text}}
370 Emphasized text; this will be presented in an italic font.
371 \end{macrodesc}
372
373 \begin{macrodesc}{envvar}{\p{name}}
374 An environment variable. Index entries are generated.
375 \end{macrodesc}
376
377 \begin{macrodesc}{exception}{\p{name}}
378 The name of an exception. A dotted name may be used.
379 \end{macrodesc}
380
381 \begin{macrodesc}{file}{\p{file or dir}}
382 The name of a file or directory. In the PDF and PostScript
383 outputs, single quotes and a font change are used to indicate
384 the file name, but no quotes are used in the HTML output.
385 \end{macrodesc}
386
387 \begin{macrodesc}{filenq}{\p{file or dir}}
388 Like \macro{file}, but single quotes are never used. This can
389 be used in conjunction with tables if a column will only contain
390 file or directory names.
391 \end{macrodesc}
392
393 \begin{macrodesc}{function}{\p{name}}
394 The name of a Python function; dotted names may be used.
395 \end{macrodesc}
396
397 \begin{macrodesc}{kbd}{\p{key sequence}}
398 Mark a sequence of keystrokes. What form \var{key sequence}
399 takes may depend on platform- or application-specific
400 conventions. For example, an \program{xemacs} key sequence
401 may be marked like \code{\e kbd\{C-x C-f\}}.
402 \end{macrodesc}
403
404 \begin{macrodesc}{keyword}{\p{name}}
405 The name of a keyword in a programming language.
406 \end{macrodesc}
407
408 \begin{macrodesc}{makevar}{\p{name}}
409 The name of a \program{make} variable.
410 \end{macrodesc}
411
412 \begin{macrodesc}{manpage}{\p{name}\p{section}}
413 A reference to a \UNIX{} manual page.
414 \end{macrodesc}
415
416 \begin{macrodesc}{member}{\p{name}}
417 The name of a data attribute of an object.
418 \end{macrodesc}
419
420 \begin{macrodesc}{method}{\p{name}}
421 The name of a method of an object. \var{name} should include the
422 method name and the trailing parentheses. A dotted name may be
423 used.
424 \end{macrodesc}
425
426 \begin{macrodesc}{mimetype}{\p{name}}
427 The name of a MIME type.
428 \end{macrodesc}
429
430 \begin{macrodesc}{module}{\p{name}}
431 The name of a module; a dotted name may be used.
432 \end{macrodesc}
433
434 \begin{macrodesc}{newsgroup}{\p{name}}
435 The name of a USENET newsgroup.
436 \end{macrodesc}
437
Fred Drake2f4bebd1999-04-28 16:43:11 +0000438 \begin{macrodesc}{program}{\p{name}}
439 The name of an executable program. This may differ from the
440 file name for the executable for some platforms. In particular,
441 the \file{.exe} (or other) extension should be omitted for DOS
442 and Windows programs.
443 \end{macrodesc}
444
445 \begin{macrodesc}{refmodule}{\op{key}\p{name}}
446 Like \macro{module}, but create a hyperlink to the documentation
447 for the named module. Note that the corresponding
448 \macro{declaremodule} must be in the same document. If the
449 \macro{declaremodule} defines a module key different from the
450 module name, it must also be provided as \var{key} to the
451 \macro{refmodule} macro.
452 \end{macrodesc}
453
454 \begin{macrodesc}{regexp}{\p{string}}
455 Mark a regular expression.
456 \end{macrodesc}
457
458 \begin{macrodesc}{rfc}{\p{number}}
459 A reference to an Internet Request for Comments. This generates
460 appropriate index entries. The text \samp{RFC \var{number}} is
461 generated; in the HTML output, this text is a hyperlink to an
462 online copy of the specified RFC.
463 \end{macrodesc}
464
465 \begin{macrodesc}{samp}{\p{text}}
466 A short code sample, but possibly longer than would be given
467 using \macro{code}. Since quotation marks are added, spaces are
468 acceptable.
469 \end{macrodesc}
470
471 \begin{macrodesc}{strong}{\p{text}}
472 Strongly emphasized text; this will be presented using a bold
473 font.
474 \end{macrodesc}
475
476 \begin{macrodesc}{var}{\p{name}}
477 The name of a variable or formal parameter in running text.
478 \end{macrodesc}
479
480 \begin{macrodesc}{version}{}
481 The version number for the documentation, as specified using
482 \macro{release} in the preamble.
483 \end{macrodesc}
Fred Drakeacffaee1999-03-16 16:09:13 +0000484
485
486 \subsection{Module-specific Markup}
487
488 The markup described in this section is used to provide information
489 about a module being documented. A typical use of this markup
490 appears at the top of the section used to document a module. A
491 typical example might look like this:
492
493\begin{verbatim}
494\section{\module{spam} ---
495 Access to the SPAM facility}
496
497\declaremodule{extension}{spam}
Fred Drake2c4e0091999-03-29 14:55:55 +0000498 \platform{Unix}
Fred Drakeadade921999-04-22 13:05:27 +0000499\modulesynopsis{Access to the SPAM facility of \UNIX{}.}
Fred Drake2c4e0091999-03-29 14:55:55 +0000500\moduleauthor{Jane Doe}{jane.doe@frobnitz.org}
Fred Drakeacffaee1999-03-16 16:09:13 +0000501\end{verbatim}
502
Fred Drakeadade921999-04-22 13:05:27 +0000503 \begin{macrodesc}{declaremodule}{\op{key}\p{type}\p{name}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000504 Requires two parameters: module type (standard, builtin,
505 extension), and the module name. An optional parameter should be
506 given as the basis for the module's ``key'' used for linking to or
507 referencing the section. The ``key'' should only be given if the
Fred Drake2c4e0091999-03-29 14:55:55 +0000508 module's name contains any underscores, and should be the name
509 with the underscores stripped. This should be the first thing
510 after the \macro{section} used to introduce the module.
Fred Drakeacffaee1999-03-16 16:09:13 +0000511 \end{macrodesc}
512
Fred Drakeadade921999-04-22 13:05:27 +0000513 \begin{macrodesc}{platform}{\p{specifier}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000514 Specifies the portability of the module. \var{specifier} is a
515 comma-separated list of keys that specify what platforms the
516 module is available on. The keys are short identifiers;
517 examples that are in use include \samp{IRIX}, \samp{Mac},
518 \samp{Windows}, and \samp{Unix}. It is important to use a key
Fred Drake7a737df1999-04-23 14:41:44 +0000519 which has already been used when applicable. This is used to
520 provide annotations in the Module Index and the HTML and GNU info
521 output.
Fred Drakeacffaee1999-03-16 16:09:13 +0000522 \end{macrodesc}
523
Fred Drakeadade921999-04-22 13:05:27 +0000524 \begin{macrodesc}{modulesynopsis}{\p{text}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000525 The \var{text} is a short, ``one line'' description of the
526 module that can be used as part of the chapter introduction.
Fred Drakeadade921999-04-22 13:05:27 +0000527 This is must be placed after \macro{declaremodule}.
Fred Drakeacffaee1999-03-16 16:09:13 +0000528 The synopsis is used in building the contents of the table
529 inserted as the \macro{localmoduletable}. No text is
530 produced at the point of the markup.
531 \end{macrodesc}
532
Fred Drakeadade921999-04-22 13:05:27 +0000533 \begin{macrodesc}{moduleauthor}{\p{name}\p{email}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000534 This macro is used to encode information about who authored a
535 module. This is currently not used to generate output, but can be
536 used to help determine the origin of the module.
537 \end{macrodesc}
538
539
540 \subsection{Library-level Markup}
541
542 This markup is used when describing a selection of modules. For
543 example, the \emph{Macintosh Library Modules} document uses this
544 to help provide an overview of the modules in the collection, and
545 many chapters in the \emph{Python Library Reference} use it for
546 the same purpose.
547
548 \begin{macrodesc}{localmoduletable}{}
Fred Drake2c4e0091999-03-29 14:55:55 +0000549 If a \file{.syn} file exists for the current
Fred Drakeacffaee1999-03-16 16:09:13 +0000550 chapter (or for the entire document in \code{howto} documents), a
551 \env{synopsistable} is created with the contents loaded from the
552 \file{.syn} file.
553 \end{macrodesc}
554
555
556 \subsection{Table Markup}
557
558 There are three general-purpose table environments defined which
559 should be used whenever possible. These environments are defined
560 to provide tables of specific widths and some convenience for
561 formatting. These environments are not meant to be general
562 replacements for the standard \LaTeX{} table environments, but can
563 be used for an advantage when the documents are processed using
564 the tools for Python documentation processing. In particular, the
565 generated HTML looks good! There is also an advantage for the
Fred Drake7a737df1999-04-23 14:41:44 +0000566 eventual conversion of the documentation to SGML (see section
Fred Drake2c4e0091999-03-29 14:55:55 +0000567 \ref{futures}, ``Future Directions'').
Fred Drakeacffaee1999-03-16 16:09:13 +0000568
569 Each environment is named \env{table\var{cols}}, where \var{cols}
570 is the number of columns in the table specified in lower-case
571 Roman numerals. Within each of these environments, an additional
572 macro, \macro{line\var{cols}}, is defined, where \var{cols}
573 matches the \var{cols} value of the corresponding table
Fred Drake2c4e0091999-03-29 14:55:55 +0000574 environment. These are supported for \var{cols} values of
575 \code{ii}, \code{iii}, and \code{iv}. These environments are all
576 built on top of the \env{tabular} environment.
Fred Drakeacffaee1999-03-16 16:09:13 +0000577
Fred Drakeadade921999-04-22 13:05:27 +0000578 \begin{envdesc}{tableii}{\p{colspec}\p{col1font}\p{heading1}\p{heading2}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000579 Create a two-column table using the \LaTeX{} column specifier
580 \var{colspec}. The column specifier should indicate vertical
581 bars between columns as appropriate for the specific table, but
582 should not specify vertical bars on the outside of the table
583 (that is considered a stylesheet issue). The \var{col1font}
584 parameter is used as a stylistic treatment of the first column
585 of the table: the first column is presented as
586 \code{\e\var{col1font}\{column1\}}. To avoid treating the first
Fred Drakeadade921999-04-22 13:05:27 +0000587 column specially, \var{col1font} may be \samp{textrm}. The
Fred Drakeacffaee1999-03-16 16:09:13 +0000588 column headings are taken from the values \var{heading1} and
589 \var{heading2}.
590 \end{envdesc}
591
Fred Drakeadade921999-04-22 13:05:27 +0000592 \begin{macrodesc}{lineii}{\p{column1}\p{column2}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000593 Create a single table row within a \env{tableii} environment.
594 The text for the first column will be generated by applying the
595 macro named by the \var{col1font} value when the \env{tableii}
596 was opened.
597 \end{macrodesc}
598
Fred Drakeadade921999-04-22 13:05:27 +0000599 \begin{envdesc}{tableiii}{\p{colspec}\p{col1font}\p{heading1}\p{heading2}\p{heading3}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000600 Like the \env{tableii} environment, but with a third column.
601 The heading for the third column is given by \var{heading3}.
602 \end{envdesc}
603
Fred Drakeadade921999-04-22 13:05:27 +0000604 \begin{macrodesc}{lineiii}{\p{column1}\p{column2}\p{column3}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000605 Like the \macro{lineii} macro, but with a third column. The
606 text for the third column is given by \var{column3}.
607 \end{macrodesc}
608
Fred Drakeadade921999-04-22 13:05:27 +0000609 \begin{envdesc}{tableiv}{\p{colspec}\p{col1font}\p{heading1}\p{heading2}\p{heading3}\p{heading4}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000610 Like the \env{tableiii} environment, but with a fourth column.
611 The heading for the fourth column is given by \var{heading4}.
612 \end{envdesc}
613
Fred Drakeadade921999-04-22 13:05:27 +0000614 \begin{macrodesc}{lineiv}{\p{column1}\p{column2}\p{column3}\p{column4}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000615 Like the \macro{lineiii} macro, but with a fourth column. The
616 text for the fourth column is given by \var{column4}.
617 \end{macrodesc}
618
619
620 An additional table-like environment is \env{synopsistable}. The
621 table generated by this environment contains two columns, and each
622 row is defined by an alternate definition of
623 \macro{modulesynopsis}. This environment is not normally use by
624 the user, but is created by the \macro{localmoduletable} macro.
625
626
627 \subsection{Reference List Markup \label{references}}
628
629 Many sections include a list of references to module documentation
630 or external documents. These lists are created using the
631 \env{seealso} environment. This environment defines some
632 additional macros to support creating reference entries in a
633 reasonable manner.
634
635 \begin{envdesc}{seealso}{}
636 This environment creates a ``See also:'' heading and defines the
637 markup used to describe individual references.
638 \end{envdesc}
639
Fred Drakeadade921999-04-22 13:05:27 +0000640 \begin{macrodesc}{seemodule}{\op{key}\p{name}\p{why}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000641 Refer to another module. \var{why} should be a brief
642 explanation of why the reference may be interesting. The module
643 name is given in \var{name}, with the link key given in
644 \var{key} if necessary. In the HTML and PDF conversions, the
645 module name will be a hyperlink to the referred-to module.
Fred Drakeadade921999-04-22 13:05:27 +0000646 \strong{Note:} The module must be documented in the same
647 document (the corresponding \macro{declaremodule} is required).
Fred Drakeacffaee1999-03-16 16:09:13 +0000648 \end{macrodesc}
649
Fred Drakeadade921999-04-22 13:05:27 +0000650 \begin{macrodesc}{seetext}{\p{text}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000651 Add arbitrary text \var{text} to the ``See also:'' list. This
652 can be used to refer to off-line materials or on-line materials
653 using the \macro{url} macro.
654 \end{macrodesc}
655
656
657 \subsection{Index-generating Markup \label{indexing}}
658
659 Effective index generation for technical documents can be very
660 difficult, especially for someone familliar with the topic but not
661 the creation of indexes. Much of the difficulty arises in the
662 area of terminology: including the terms an expert would use for a
663 concept is not sufficient. Coming up with the terms that a novice
Fred Drake2c4e0091999-03-29 14:55:55 +0000664 would look up is fairly difficult for an author who, typically, is
Fred Drakeacffaee1999-03-16 16:09:13 +0000665 an expert in the area she is writing on.
666
Fred Drake2c4e0091999-03-29 14:55:55 +0000667 The truly difficult aspects of index generation are not areas with
668 which the documentation tools can help. However, ease
Fred Drakeacffaee1999-03-16 16:09:13 +0000669 of producing the index once content decisions are make is within
670 the scope of the tools. Markup is provided which the processing
671 software is able to use to generate a variety of kinds of index
672 entry with minimal effort. Additionally, many of the environments
Fred Drake7a737df1999-04-23 14:41:44 +0000673 described in section \ref{info-units}, ``Information Units,'' will
Fred Drakeacffaee1999-03-16 16:09:13 +0000674 generate appropriate entries into the general and module indexes.
675
676 The following macro can be used to control the generation of index
Fred Drakeadade921999-04-22 13:05:27 +0000677 data, and should be used in the document preamble:
Fred Drakeacffaee1999-03-16 16:09:13 +0000678
679 \begin{macrodesc}{makemodindex}{}
Fred Drakeadade921999-04-22 13:05:27 +0000680 This should be used in the document preamble if a ``Module
Fred Drakeacffaee1999-03-16 16:09:13 +0000681 Index'' is desired for a document containing reference material
682 on many modules. This causes a data file
683 \code{lib\macro{jobname}.idx} to be created from the
684 \macro{declaremodule} macros. This file can be processed by the
685 \program{makeindex} program to generate a file which can be
686 \macro{input} into the document at the desired location of the
687 module index.
688 \end{macrodesc}
689
690 There are a number of macros that are useful for adding index
691 entries for particular concepts, many of which are specific to
692 programming languages or even Python.
693
Fred Drakeadade921999-04-22 13:05:27 +0000694 \begin{macrodesc}{bifuncindex}{\p{name}}
Fred Drakeec8b9051999-04-23 20:01:17 +0000695 Add an index entry referring to a built-in function named
696 \var{name}; parentheses should not be included after
Fred Drake2c4e0091999-03-29 14:55:55 +0000697 \var{name}.
Fred Drakeacffaee1999-03-16 16:09:13 +0000698 \end{macrodesc}
699
Fred Drakeadade921999-04-22 13:05:27 +0000700 \begin{macrodesc}{exindex}{\p{exception}}
Fred Drake2c4e0091999-03-29 14:55:55 +0000701 Add a reference to an exception named \var{exception}. The
702 exception may be either string- or class-based.
Fred Drakeacffaee1999-03-16 16:09:13 +0000703 \end{macrodesc}
704
Fred Drakeadade921999-04-22 13:05:27 +0000705 \begin{macrodesc}{kwindex}{\p{keyword}}
Fred Drake2c4e0091999-03-29 14:55:55 +0000706 Add a reference to a language keyword (not a keyword parameter
707 in a function or method call).
Fred Drakeacffaee1999-03-16 16:09:13 +0000708 \end{macrodesc}
709
Fred Drakeadade921999-04-22 13:05:27 +0000710 \begin{macrodesc}{obindex}{\p{object type}}
Fred Drake2c4e0091999-03-29 14:55:55 +0000711 Add an index entry for a built-in object type.
Fred Drakeacffaee1999-03-16 16:09:13 +0000712 \end{macrodesc}
713
Fred Drakeadade921999-04-22 13:05:27 +0000714 \begin{macrodesc}{opindex}{\p{operator}}
Fred Drake2c4e0091999-03-29 14:55:55 +0000715 Add a reference to an operator, such as \samp{+}.
Fred Drakeacffaee1999-03-16 16:09:13 +0000716 \end{macrodesc}
717
Fred Drakeadade921999-04-22 13:05:27 +0000718 \begin{macrodesc}{refmodindex}{\op{key}\p{module}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000719 Add an index entry for module \var{module}; if \var{module}
720 contains an underscore, the optional parameter \var{key} should
721 be provided as the same string with underscores removed. An
722 index entry ``\var{module} (module)'' will be generated. This
723 is intended for use with non-standard modules implemented in
724 Python.
725 \end{macrodesc}
726
Fred Drakeadade921999-04-22 13:05:27 +0000727 \begin{macrodesc}{refexmodindex}{\op{key}\p{module}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000728 As for \macro{refmodindex}, but the index entry will be
729 ``\var{module} (extension module).'' This is intended for use
730 with non-standard modules not implemented in Python.
731 \end{macrodesc}
732
Fred Drakeadade921999-04-22 13:05:27 +0000733 \begin{macrodesc}{refbimodindex}{\op{key}\p{module}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000734 As for \macro{refmodindex}, but the index entry will be
735 ``\var{module} (built-in module).'' This is intended for use
736 with standard modules not implemented in Python.
737 \end{macrodesc}
738
Fred Drakeadade921999-04-22 13:05:27 +0000739 \begin{macrodesc}{refstmodindex}{\op{key}\p{module}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000740 As for \macro{refmodindex}, but the index entry will be
741 ``\var{module} (standard module).'' This is intended for use
742 with standard modules implemented in Python.
743 \end{macrodesc}
744
Fred Drakeadade921999-04-22 13:05:27 +0000745 \begin{macrodesc}{stindex}{\p{statement}}
Fred Drake2c4e0091999-03-29 14:55:55 +0000746 Add an index entry for a statement type, such as \keyword{print}
Fred Drakeadade921999-04-22 13:05:27 +0000747 or \keyword{try}/\keyword{finally}.
748
749 XXX Need better examples of difference from \macro{kwindex}.
Fred Drakeacffaee1999-03-16 16:09:13 +0000750 \end{macrodesc}
751
752
753 Additional macros are provided which are useful for conveniently
754 creating general index entries which should appear at many places
755 in the index by rotating a list of words. These are simple macros
756 that simply use \macro{index} to build some number of index
757 entries. Index entries build using these macros contain both
758 primary and secondary text.
759
Fred Drakeadade921999-04-22 13:05:27 +0000760 \begin{macrodesc}{indexii}{\p{word1}\p{word2}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000761 Build two index entries. This is exactly equivalent to using
762 \code{\e index\{\var{word1}!\var{word2}\}} and
763 \code{\e index\{\var{word2}!\var{word1}\}}.
764 \end{macrodesc}
765
Fred Drakeadade921999-04-22 13:05:27 +0000766 \begin{macrodesc}{indexiii}{\p{word1}\p{word2}\p{word3}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000767 Build three index entries. This is exactly equivalent to using
768 \code{\e index\{\var{word1}!\var{word2} \var{word3}\}},
769 \code{\e index\{\var{word2}!\var{word3}, \var{word1}\}}, and
770 \code{\e index\{\var{word3}!\var{word1} \var{word2}\}}.
771 \end{macrodesc}
772
Fred Drakeadade921999-04-22 13:05:27 +0000773 \begin{macrodesc}{indexiv}{\p{word1}\p{word2}\p{word3}\p{word4}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000774 Build four index entries. This is exactly equivalent to using
775 \code{\e index\{\var{word1}!\var{word2} \var{word3} \var{word4}\}},
776 \code{\e index\{\var{word2}!\var{word3} \var{word4}, \var{word1}\}},
777 \code{\e index\{\var{word3}!\var{word4}, \var{word1} \var{word2}\}},
778 and
779 \code{\e index\{\var{word4}!\var{word1} \var{word2} \var{word3}\}}.
780 \end{macrodesc}
781
782
783\section{Special Names}
784
785 Many special names are used in the Python documentation, including
786 the names of operating systems, programming languages, standards
787 bodies, and the like. Many of these were assigned \LaTeX{} macros
788 at some point in the distant past, and these macros lived on long
789 past their usefulness. In the current markup, these entities are
790 not assigned any special markup, but the preferred spellings are
791 given here to aid authors in maintaining the consistency of
792 presentation in the Python documentation.
793
794 \begin{description}
795 \item[POSIX]
796 The name assigned to a particular group of standards. This is
797 always uppercase.
798
799 \item[Python]
800 The name of our favorite programming language is always
801 capitalized.
802 \end{description}
803
804
805\section{Processing Tools}
806
807 \subsection{External Tools}
808
809 Many tools are needed to be able to process the Python
810 documentation if all supported formats are required. This
Fred Drakeadade921999-04-22 13:05:27 +0000811 section lists the tools used and when each is required. Consult
812 the \file{Doc/README} file to see if there are specific version
813 requirements for any of these.
Fred Drakeacffaee1999-03-16 16:09:13 +0000814
815 \begin{description}
816 \item[\program{dvips}]
817 This program is a typical part of \TeX{} installations. It is
818 used to generate PostScript from the ``device independent''
Fred Drake2c4e0091999-03-29 14:55:55 +0000819 \file{.dvi} files. It is needed for the conversion to
Fred Drakeacffaee1999-03-16 16:09:13 +0000820 PostScript.
821
822 \item[\program{emacs}]
823 Emacs is the kitchen sink of programmers' editors, and a damn
824 fine kitchen sink it is. It also comes with some of the
825 processing needed to support the proper menu structures for
826 Texinfo documents when an info conversion is desired. This is
Fred Drake2c4e0091999-03-29 14:55:55 +0000827 needed for the info conversion. Using \program{xemacs}
Fred Drakeacffaee1999-03-16 16:09:13 +0000828 instead of FSF \program{emacs} may lead to instability in the
829 conversion, but that's because nobody seems to maintain the
830 Emacs Texinfo code in a portable manner.
831
832 \item[\program{latex}]
833 This is a world-class typesetter by Donald Knuth. It is used
834 for the conversion to PostScript, and is needed for the HTML
835 conversion as well (\LaTeX2HTML requires one of the
836 intermediate files it creates).
837
838 \item[\program{latex2html}]
839 Probably the longest Perl script anyone ever attempted to
840 maintain. This converts \LaTeX{} documents to HTML documents,
841 and does a pretty reasonable job. It is required for the
842 conversions to HTML and GNU info.
843
844 \item[\program{lynx}]
845 This is a text-mode Web browser which includes an
846 HTML-to-plain text conversion. This is used to convert
847 \code{howto} documents to text.
848
849 \item[\program{make}]
850 Just about any version should work for the standard documents,
851 but GNU \program{make} is required for the experimental
852 processes in \file{Doc/tools/sgmlconv/}, at least while
853 they're experimental.
854
855 \item[\program{makeindex}]
856 This is a standard program for converting \LaTeX{} index data
857 to a formatted index; it should be included with all \LaTeX{}
858 installations. It is needed for the PDF and PostScript
859 conversions.
860
861 \item[\program{makeinfo}]
862 GNU \program{makeinfo} is used to convert Texinfo documents to
863 GNU info files. Since Texinfo is used as an intermediate
864 format in the info conversion, this program is needed in that
865 conversion.
866
867 \item[\program{pdflatex}]
868 pdf\TeX{} is a relatively new variant of \TeX, and is used to
869 generate the PDF version of the manuals. It is typically
870 installed as part of most of the large \TeX{} distributions.
Fred Drake7a737df1999-04-23 14:41:44 +0000871 \program{pdflatex} is pdf\TeX{} using the \LaTeX{} format.
Fred Drakeacffaee1999-03-16 16:09:13 +0000872
873 \item[\program{perl}]
874 Perl is required for \LaTeX2HTML{} and one of the scripts used
875 to post-process \LaTeX2HTML output, as well as the
Fred Drake2c4e0091999-03-29 14:55:55 +0000876 HTML-to-Texinfo conversion. This is required for
Fred Drakeacffaee1999-03-16 16:09:13 +0000877 the HTML and GNU info conversions.
878
879 \item[\program{python}]
880 Python is used for many of the scripts in the
881 \file{Doc/tools/} directory; it is required for all
882 conversions. This shouldn't be a problem if you're interested
883 in writing documentation for Python!
884 \end{description}
885
886
887 \subsection{Internal Tools}
888
889 This section describes the various scripts that are used to
890 implement various stages of document processing or to orchestrate
Fred Drake2c4e0091999-03-29 14:55:55 +0000891 entire build sequences. Most of these tools are only useful
Fred Drakeacffaee1999-03-16 16:09:13 +0000892 in the context of building the standard documentation, but some
893 are more general.
894
895 \begin{description}
896 \item[\program{mkhowto}]
897 \end{description}
898
899
900\section{Future Directions \label{futures}}
901
902 The history of the Python documentation is full of changes, most of
903 which have been fairly small and evolutionary. There has been a
904 great deal of discussion about making large changes in the markup
905 languages and tools used to process the documentation. This section
906 deals with the nature of the changes and what appears to be the most
907 likely path of future development.
908
909 \subsection{Structured Documentation \label{structured}}
910
911 Most of the small changes to the \LaTeX{} markup have been made
912 with an eye to divorcing the markup from the presentation, making
913 both a bit more maintainable. Over the course of 1998, a large
914 number of changes were made with exactly this in mind; previously,
915 changes had been made but in a less systematic manner and with
916 more concern for not needing to update the existing content. The
917 result has been a highly structured and semantically loaded markup
918 language implemented in \LaTeX. With almost no basic \TeX{} or
919 \LaTeX{} markup in use, however, the markup syntax is about the
920 only evidence of \LaTeX{} in the actual document sources.
921
922 One side effect of this is that while we've been able to use
923 standard ``engines'' for manipulating the documents, such as
924 \LaTeX{} and \LaTeX2HTML, most of the actual transformations have
Fred Drake7a737df1999-04-23 14:41:44 +0000925 been created specifically for Python. The \LaTeX{} document
926 classes and \LaTeX2HTML support are both complete implementations
927 of the specific markup designed for these documents.
Fred Drakeacffaee1999-03-16 16:09:13 +0000928
929 Combining highly customized markup with the somewhat esoteric
930 systems used to process the documents leads us to ask some
931 questions: Can we do this more easily? and, Can we do this
932 better? After a great deal of discussion with the community, we
933 have determined that actively pursuing modern structured
Fred Drake2c4e0091999-03-29 14:55:55 +0000934 documentation systems is worth some investment of time.
Fred Drakeacffaee1999-03-16 16:09:13 +0000935
936 There appear to be two real contenders in this arena: the Standard
937 General Markup Language (SGML), and the Extensible Markup Language
938 (XML). Both of these standards have advantages and disadvantages,
939 and many advantages are shared.
940
941 SGML offers advantages which may appeal most to authors,
942 especially those using ordinary text editors. There are also
943 additional abilities to define content models. A number of
944 high-quality tools with demonstrated maturity is available, but
945 most are not free; for those which are, portability issues remain
946 a problem.
947
948 The advantages of XML include the availability of a large number
949 of evolving tools. Unfortunately, many of the associated
950 standards are still evolving, and the tools will have to follow
951 along. This means that developing a robust tool set that uses
952 more than the basic XML 1.0 recommendation is not possible in the
953 short term. The promised availability of a wide variety of
954 high-quality tools which support some of the most important
955 related standards is not immediate. Many tools are likely to be
956 free.
957
Fred Drakeadade921999-04-22 13:05:27 +0000958 XXX Eventual migration to SGML/XML.
Fred Drakeacffaee1999-03-16 16:09:13 +0000959
960 \subsection{Discussion Forums \label{discussion}}
961
962 Discussion of the future of the Python documentation and related
Fred Drake7a737df1999-04-23 14:41:44 +0000963 topics takes place in the Documentation Special Interest Group, or
964 ``Doc-SIG.'' Information on the group, including mailing list
965 archives and subscription information, is available at
Fred Drakeacffaee1999-03-16 16:09:13 +0000966 \url{http://www.python.org/sigs/doc-sig/}. The SIG is open to all
967 interested parties.
968
969 Comments and bug reports on the standard documents should be sent
970 to \email{python-docs@python.org}. This may include comments
Fred Drakeadade921999-04-22 13:05:27 +0000971 about formatting, content, grammatical and spelling errors, or
972 this document.
Fred Drakeacffaee1999-03-16 16:09:13 +0000973
974\end{document}