blob: 9fbcc8137bd1084b5a6af074464ab9ab482f5b25 [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 Drake87f768e1999-05-17 15:22:45 +0000311 The macros described in this section are used to mark just about
312 anything interesting in the document text. They may be used in
313 headings (though anything involving hyperlinks should be avoided
314 there) as well as in the body text.
Fred Drake2f4bebd1999-04-28 16:43:11 +0000315
316 \begin{macrodesc}{bfcode}{\p{text}}
317 Like \macro{code}, but also makes the font bold-face.
318 \end{macrodesc}
319
320 \begin{macrodesc}{cdata}{\p{name}}
321 The name of a C-language variable.
322 \end{macrodesc}
323
324 \begin{macrodesc}{cfunction}{\p{name}}
325 The name of a C-language function. \var{name} should include the
326 function name and the trailing parentheses.
327 \end{macrodesc}
328
329 \begin{macrodesc}{character}{\p{char}}
330 A character when discussing the character rather than a one-byte
331 string value. The character will be typeset as with \macro{samp}.
332 \end{macrodesc}
333
334 \begin{macrodesc}{class}{\p{name}}
335 A class name; a dotted name may be used.
336 \end{macrodesc}
337
338 \begin{macrodesc}{code}{\p{text}}
339 A short code fragment or literal constant value. Typically, it
340 should not include any spaces since no quotation marks are
341 added.
342 \end{macrodesc}
343
344 \begin{macrodesc}{constant}{\p{name}}
345 The name of a ``defined'' constant. This may be a C-language
346 \code{\#define} or a Python variable that is not intended to be
347 changed.
348 \end{macrodesc}
349
350 \begin{macrodesc}{ctype}{\p{name}}
351 The name of a C \keyword{typedef} or structure. For structures
352 defined without a \keyword{typedef}, use \code{\e ctype\{struct
353 struct_tag\}} to make it clear that the \keyword{struct} is
354 required.
355 \end{macrodesc}
356
357 \begin{macrodesc}{deprecated}{\p{version}\p{what to do}}
358 Declare whatever is being described as being deprecated starting
359 with release \var{version}. The text given as \var{what to do}
360 should recommend something to use instead.
361 \end{macrodesc}
362
363 \begin{macrodesc}{dfn}{\p{term}}
364 Mark the defining instance of \var{term} in the text. (No index
365 entries are generated.)
366 \end{macrodesc}
367
368 \begin{macrodesc}{email}{\p{address}}
369 An email address. Note that this is \emph{not} hyperlinked in
370 any of the possible output formats.
371 \end{macrodesc}
372
373 \begin{macrodesc}{emph}{\p{text}}
374 Emphasized text; this will be presented in an italic font.
375 \end{macrodesc}
376
377 \begin{macrodesc}{envvar}{\p{name}}
378 An environment variable. Index entries are generated.
379 \end{macrodesc}
380
381 \begin{macrodesc}{exception}{\p{name}}
382 The name of an exception. A dotted name may be used.
383 \end{macrodesc}
384
385 \begin{macrodesc}{file}{\p{file or dir}}
386 The name of a file or directory. In the PDF and PostScript
387 outputs, single quotes and a font change are used to indicate
388 the file name, but no quotes are used in the HTML output.
389 \end{macrodesc}
390
391 \begin{macrodesc}{filenq}{\p{file or dir}}
392 Like \macro{file}, but single quotes are never used. This can
393 be used in conjunction with tables if a column will only contain
394 file or directory names.
395 \end{macrodesc}
396
397 \begin{macrodesc}{function}{\p{name}}
398 The name of a Python function; dotted names may be used.
399 \end{macrodesc}
400
401 \begin{macrodesc}{kbd}{\p{key sequence}}
402 Mark a sequence of keystrokes. What form \var{key sequence}
403 takes may depend on platform- or application-specific
404 conventions. For example, an \program{xemacs} key sequence
405 may be marked like \code{\e kbd\{C-x C-f\}}.
406 \end{macrodesc}
407
408 \begin{macrodesc}{keyword}{\p{name}}
409 The name of a keyword in a programming language.
410 \end{macrodesc}
411
412 \begin{macrodesc}{makevar}{\p{name}}
413 The name of a \program{make} variable.
414 \end{macrodesc}
415
416 \begin{macrodesc}{manpage}{\p{name}\p{section}}
417 A reference to a \UNIX{} manual page.
418 \end{macrodesc}
419
420 \begin{macrodesc}{member}{\p{name}}
421 The name of a data attribute of an object.
422 \end{macrodesc}
423
424 \begin{macrodesc}{method}{\p{name}}
425 The name of a method of an object. \var{name} should include the
426 method name and the trailing parentheses. A dotted name may be
427 used.
428 \end{macrodesc}
429
430 \begin{macrodesc}{mimetype}{\p{name}}
431 The name of a MIME type.
432 \end{macrodesc}
433
434 \begin{macrodesc}{module}{\p{name}}
435 The name of a module; a dotted name may be used.
436 \end{macrodesc}
437
438 \begin{macrodesc}{newsgroup}{\p{name}}
439 The name of a USENET newsgroup.
440 \end{macrodesc}
441
Fred Drake2f4bebd1999-04-28 16:43:11 +0000442 \begin{macrodesc}{program}{\p{name}}
443 The name of an executable program. This may differ from the
444 file name for the executable for some platforms. In particular,
445 the \file{.exe} (or other) extension should be omitted for DOS
446 and Windows programs.
447 \end{macrodesc}
448
449 \begin{macrodesc}{refmodule}{\op{key}\p{name}}
450 Like \macro{module}, but create a hyperlink to the documentation
451 for the named module. Note that the corresponding
452 \macro{declaremodule} must be in the same document. If the
453 \macro{declaremodule} defines a module key different from the
454 module name, it must also be provided as \var{key} to the
455 \macro{refmodule} macro.
456 \end{macrodesc}
457
458 \begin{macrodesc}{regexp}{\p{string}}
459 Mark a regular expression.
460 \end{macrodesc}
461
462 \begin{macrodesc}{rfc}{\p{number}}
463 A reference to an Internet Request for Comments. This generates
464 appropriate index entries. The text \samp{RFC \var{number}} is
465 generated; in the HTML output, this text is a hyperlink to an
466 online copy of the specified RFC.
467 \end{macrodesc}
468
469 \begin{macrodesc}{samp}{\p{text}}
470 A short code sample, but possibly longer than would be given
471 using \macro{code}. Since quotation marks are added, spaces are
472 acceptable.
473 \end{macrodesc}
474
475 \begin{macrodesc}{strong}{\p{text}}
476 Strongly emphasized text; this will be presented using a bold
477 font.
478 \end{macrodesc}
479
480 \begin{macrodesc}{var}{\p{name}}
481 The name of a variable or formal parameter in running text.
482 \end{macrodesc}
483
484 \begin{macrodesc}{version}{}
485 The version number for the documentation, as specified using
486 \macro{release} in the preamble.
487 \end{macrodesc}
Fred Drakeacffaee1999-03-16 16:09:13 +0000488
489
490 \subsection{Module-specific Markup}
491
492 The markup described in this section is used to provide information
493 about a module being documented. A typical use of this markup
494 appears at the top of the section used to document a module. A
495 typical example might look like this:
496
497\begin{verbatim}
498\section{\module{spam} ---
499 Access to the SPAM facility}
500
501\declaremodule{extension}{spam}
Fred Drake2c4e0091999-03-29 14:55:55 +0000502 \platform{Unix}
Fred Drakeadade921999-04-22 13:05:27 +0000503\modulesynopsis{Access to the SPAM facility of \UNIX{}.}
Fred Drake2c4e0091999-03-29 14:55:55 +0000504\moduleauthor{Jane Doe}{jane.doe@frobnitz.org}
Fred Drakeacffaee1999-03-16 16:09:13 +0000505\end{verbatim}
506
Fred Drakeadade921999-04-22 13:05:27 +0000507 \begin{macrodesc}{declaremodule}{\op{key}\p{type}\p{name}}
Fred Drake87f768e1999-05-17 15:22:45 +0000508 Requires two parameters: module type (\samp{standard},
509 \samp{builtin}, \samp{extension}, or \samp{}), and the module
510 name. An optional parameter should be given as the basis for the
511 module's ``key'' used for linking to or referencing the section.
512 The ``key'' should only be given if the module's name contains any
513 underscores, and should be the name with the underscores stripped.
514 Note that the \var{type} parameter must be one of the values
515 listed above or an error will be printed. For modules which are
516 contained in packages, the fully-qualified name should be given as
517 \var{name} parameter. This should be the first thing after the
518 \macro{section} used to introduce the module.
Fred Drakeacffaee1999-03-16 16:09:13 +0000519 \end{macrodesc}
520
Fred Drakeadade921999-04-22 13:05:27 +0000521 \begin{macrodesc}{platform}{\p{specifier}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000522 Specifies the portability of the module. \var{specifier} is a
523 comma-separated list of keys that specify what platforms the
524 module is available on. The keys are short identifiers;
525 examples that are in use include \samp{IRIX}, \samp{Mac},
526 \samp{Windows}, and \samp{Unix}. It is important to use a key
Fred Drake7a737df1999-04-23 14:41:44 +0000527 which has already been used when applicable. This is used to
528 provide annotations in the Module Index and the HTML and GNU info
529 output.
Fred Drakeacffaee1999-03-16 16:09:13 +0000530 \end{macrodesc}
531
Fred Drakeadade921999-04-22 13:05:27 +0000532 \begin{macrodesc}{modulesynopsis}{\p{text}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000533 The \var{text} is a short, ``one line'' description of the
534 module that can be used as part of the chapter introduction.
Fred Drakeadade921999-04-22 13:05:27 +0000535 This is must be placed after \macro{declaremodule}.
Fred Drakeacffaee1999-03-16 16:09:13 +0000536 The synopsis is used in building the contents of the table
537 inserted as the \macro{localmoduletable}. No text is
538 produced at the point of the markup.
539 \end{macrodesc}
540
Fred Drakeadade921999-04-22 13:05:27 +0000541 \begin{macrodesc}{moduleauthor}{\p{name}\p{email}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000542 This macro is used to encode information about who authored a
543 module. This is currently not used to generate output, but can be
544 used to help determine the origin of the module.
545 \end{macrodesc}
546
547
548 \subsection{Library-level Markup}
549
550 This markup is used when describing a selection of modules. For
551 example, the \emph{Macintosh Library Modules} document uses this
552 to help provide an overview of the modules in the collection, and
553 many chapters in the \emph{Python Library Reference} use it for
554 the same purpose.
555
556 \begin{macrodesc}{localmoduletable}{}
Fred Drake2c4e0091999-03-29 14:55:55 +0000557 If a \file{.syn} file exists for the current
Fred Drakeacffaee1999-03-16 16:09:13 +0000558 chapter (or for the entire document in \code{howto} documents), a
559 \env{synopsistable} is created with the contents loaded from the
560 \file{.syn} file.
561 \end{macrodesc}
562
563
564 \subsection{Table Markup}
565
566 There are three general-purpose table environments defined which
567 should be used whenever possible. These environments are defined
568 to provide tables of specific widths and some convenience for
569 formatting. These environments are not meant to be general
570 replacements for the standard \LaTeX{} table environments, but can
571 be used for an advantage when the documents are processed using
572 the tools for Python documentation processing. In particular, the
573 generated HTML looks good! There is also an advantage for the
Fred Drake7a737df1999-04-23 14:41:44 +0000574 eventual conversion of the documentation to SGML (see section
Fred Drake2c4e0091999-03-29 14:55:55 +0000575 \ref{futures}, ``Future Directions'').
Fred Drakeacffaee1999-03-16 16:09:13 +0000576
577 Each environment is named \env{table\var{cols}}, where \var{cols}
578 is the number of columns in the table specified in lower-case
579 Roman numerals. Within each of these environments, an additional
580 macro, \macro{line\var{cols}}, is defined, where \var{cols}
581 matches the \var{cols} value of the corresponding table
Fred Drake2c4e0091999-03-29 14:55:55 +0000582 environment. These are supported for \var{cols} values of
583 \code{ii}, \code{iii}, and \code{iv}. These environments are all
584 built on top of the \env{tabular} environment.
Fred Drakeacffaee1999-03-16 16:09:13 +0000585
Fred Drakeadade921999-04-22 13:05:27 +0000586 \begin{envdesc}{tableii}{\p{colspec}\p{col1font}\p{heading1}\p{heading2}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000587 Create a two-column table using the \LaTeX{} column specifier
588 \var{colspec}. The column specifier should indicate vertical
589 bars between columns as appropriate for the specific table, but
590 should not specify vertical bars on the outside of the table
591 (that is considered a stylesheet issue). The \var{col1font}
592 parameter is used as a stylistic treatment of the first column
593 of the table: the first column is presented as
594 \code{\e\var{col1font}\{column1\}}. To avoid treating the first
Fred Drakeadade921999-04-22 13:05:27 +0000595 column specially, \var{col1font} may be \samp{textrm}. The
Fred Drakeacffaee1999-03-16 16:09:13 +0000596 column headings are taken from the values \var{heading1} and
597 \var{heading2}.
598 \end{envdesc}
599
Fred Drakeadade921999-04-22 13:05:27 +0000600 \begin{macrodesc}{lineii}{\p{column1}\p{column2}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000601 Create a single table row within a \env{tableii} environment.
602 The text for the first column will be generated by applying the
603 macro named by the \var{col1font} value when the \env{tableii}
604 was opened.
605 \end{macrodesc}
606
Fred Drakeadade921999-04-22 13:05:27 +0000607 \begin{envdesc}{tableiii}{\p{colspec}\p{col1font}\p{heading1}\p{heading2}\p{heading3}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000608 Like the \env{tableii} environment, but with a third column.
609 The heading for the third column is given by \var{heading3}.
610 \end{envdesc}
611
Fred Drakeadade921999-04-22 13:05:27 +0000612 \begin{macrodesc}{lineiii}{\p{column1}\p{column2}\p{column3}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000613 Like the \macro{lineii} macro, but with a third column. The
614 text for the third column is given by \var{column3}.
615 \end{macrodesc}
616
Fred Drakeadade921999-04-22 13:05:27 +0000617 \begin{envdesc}{tableiv}{\p{colspec}\p{col1font}\p{heading1}\p{heading2}\p{heading3}\p{heading4}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000618 Like the \env{tableiii} environment, but with a fourth column.
619 The heading for the fourth column is given by \var{heading4}.
620 \end{envdesc}
621
Fred Drakeadade921999-04-22 13:05:27 +0000622 \begin{macrodesc}{lineiv}{\p{column1}\p{column2}\p{column3}\p{column4}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000623 Like the \macro{lineiii} macro, but with a fourth column. The
624 text for the fourth column is given by \var{column4}.
625 \end{macrodesc}
626
627
628 An additional table-like environment is \env{synopsistable}. The
629 table generated by this environment contains two columns, and each
630 row is defined by an alternate definition of
631 \macro{modulesynopsis}. This environment is not normally use by
632 the user, but is created by the \macro{localmoduletable} macro.
633
634
635 \subsection{Reference List Markup \label{references}}
636
637 Many sections include a list of references to module documentation
638 or external documents. These lists are created using the
639 \env{seealso} environment. This environment defines some
640 additional macros to support creating reference entries in a
641 reasonable manner.
642
643 \begin{envdesc}{seealso}{}
644 This environment creates a ``See also:'' heading and defines the
645 markup used to describe individual references.
646 \end{envdesc}
647
Fred Drakeadade921999-04-22 13:05:27 +0000648 \begin{macrodesc}{seemodule}{\op{key}\p{name}\p{why}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000649 Refer to another module. \var{why} should be a brief
650 explanation of why the reference may be interesting. The module
651 name is given in \var{name}, with the link key given in
652 \var{key} if necessary. In the HTML and PDF conversions, the
653 module name will be a hyperlink to the referred-to module.
Fred Drakeadade921999-04-22 13:05:27 +0000654 \strong{Note:} The module must be documented in the same
655 document (the corresponding \macro{declaremodule} is required).
Fred Drakeacffaee1999-03-16 16:09:13 +0000656 \end{macrodesc}
657
Fred Drakeadade921999-04-22 13:05:27 +0000658 \begin{macrodesc}{seetext}{\p{text}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000659 Add arbitrary text \var{text} to the ``See also:'' list. This
660 can be used to refer to off-line materials or on-line materials
661 using the \macro{url} macro.
662 \end{macrodesc}
663
664
665 \subsection{Index-generating Markup \label{indexing}}
666
667 Effective index generation for technical documents can be very
668 difficult, especially for someone familliar with the topic but not
669 the creation of indexes. Much of the difficulty arises in the
670 area of terminology: including the terms an expert would use for a
671 concept is not sufficient. Coming up with the terms that a novice
Fred Drake2c4e0091999-03-29 14:55:55 +0000672 would look up is fairly difficult for an author who, typically, is
Fred Drakeacffaee1999-03-16 16:09:13 +0000673 an expert in the area she is writing on.
674
Fred Drake2c4e0091999-03-29 14:55:55 +0000675 The truly difficult aspects of index generation are not areas with
676 which the documentation tools can help. However, ease
Fred Drakeacffaee1999-03-16 16:09:13 +0000677 of producing the index once content decisions are make is within
678 the scope of the tools. Markup is provided which the processing
679 software is able to use to generate a variety of kinds of index
680 entry with minimal effort. Additionally, many of the environments
Fred Drake7a737df1999-04-23 14:41:44 +0000681 described in section \ref{info-units}, ``Information Units,'' will
Fred Drakeacffaee1999-03-16 16:09:13 +0000682 generate appropriate entries into the general and module indexes.
683
684 The following macro can be used to control the generation of index
Fred Drakeadade921999-04-22 13:05:27 +0000685 data, and should be used in the document preamble:
Fred Drakeacffaee1999-03-16 16:09:13 +0000686
687 \begin{macrodesc}{makemodindex}{}
Fred Drakeadade921999-04-22 13:05:27 +0000688 This should be used in the document preamble if a ``Module
Fred Drakeacffaee1999-03-16 16:09:13 +0000689 Index'' is desired for a document containing reference material
690 on many modules. This causes a data file
691 \code{lib\macro{jobname}.idx} to be created from the
692 \macro{declaremodule} macros. This file can be processed by the
693 \program{makeindex} program to generate a file which can be
694 \macro{input} into the document at the desired location of the
695 module index.
696 \end{macrodesc}
697
698 There are a number of macros that are useful for adding index
699 entries for particular concepts, many of which are specific to
700 programming languages or even Python.
701
Fred Drakeadade921999-04-22 13:05:27 +0000702 \begin{macrodesc}{bifuncindex}{\p{name}}
Fred Drakeec8b9051999-04-23 20:01:17 +0000703 Add an index entry referring to a built-in function named
704 \var{name}; parentheses should not be included after
Fred Drake2c4e0091999-03-29 14:55:55 +0000705 \var{name}.
Fred Drakeacffaee1999-03-16 16:09:13 +0000706 \end{macrodesc}
707
Fred Drakeadade921999-04-22 13:05:27 +0000708 \begin{macrodesc}{exindex}{\p{exception}}
Fred Drake2c4e0091999-03-29 14:55:55 +0000709 Add a reference to an exception named \var{exception}. The
710 exception may be either string- or class-based.
Fred Drakeacffaee1999-03-16 16:09:13 +0000711 \end{macrodesc}
712
Fred Drakeadade921999-04-22 13:05:27 +0000713 \begin{macrodesc}{kwindex}{\p{keyword}}
Fred Drake2c4e0091999-03-29 14:55:55 +0000714 Add a reference to a language keyword (not a keyword parameter
715 in a function or method call).
Fred Drakeacffaee1999-03-16 16:09:13 +0000716 \end{macrodesc}
717
Fred Drakeadade921999-04-22 13:05:27 +0000718 \begin{macrodesc}{obindex}{\p{object type}}
Fred Drake2c4e0091999-03-29 14:55:55 +0000719 Add an index entry for a built-in object type.
Fred Drakeacffaee1999-03-16 16:09:13 +0000720 \end{macrodesc}
721
Fred Drakeadade921999-04-22 13:05:27 +0000722 \begin{macrodesc}{opindex}{\p{operator}}
Fred Drake2c4e0091999-03-29 14:55:55 +0000723 Add a reference to an operator, such as \samp{+}.
Fred Drakeacffaee1999-03-16 16:09:13 +0000724 \end{macrodesc}
725
Fred Drakeadade921999-04-22 13:05:27 +0000726 \begin{macrodesc}{refmodindex}{\op{key}\p{module}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000727 Add an index entry for module \var{module}; if \var{module}
728 contains an underscore, the optional parameter \var{key} should
729 be provided as the same string with underscores removed. An
730 index entry ``\var{module} (module)'' will be generated. This
731 is intended for use with non-standard modules implemented in
732 Python.
733 \end{macrodesc}
734
Fred Drakeadade921999-04-22 13:05:27 +0000735 \begin{macrodesc}{refexmodindex}{\op{key}\p{module}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000736 As for \macro{refmodindex}, but the index entry will be
737 ``\var{module} (extension module).'' This is intended for use
738 with non-standard modules not implemented in Python.
739 \end{macrodesc}
740
Fred Drakeadade921999-04-22 13:05:27 +0000741 \begin{macrodesc}{refbimodindex}{\op{key}\p{module}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000742 As for \macro{refmodindex}, but the index entry will be
743 ``\var{module} (built-in module).'' This is intended for use
744 with standard modules not implemented in Python.
745 \end{macrodesc}
746
Fred Drakeadade921999-04-22 13:05:27 +0000747 \begin{macrodesc}{refstmodindex}{\op{key}\p{module}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000748 As for \macro{refmodindex}, but the index entry will be
749 ``\var{module} (standard module).'' This is intended for use
750 with standard modules implemented in Python.
751 \end{macrodesc}
752
Fred Drakeadade921999-04-22 13:05:27 +0000753 \begin{macrodesc}{stindex}{\p{statement}}
Fred Drake2c4e0091999-03-29 14:55:55 +0000754 Add an index entry for a statement type, such as \keyword{print}
Fred Drakeadade921999-04-22 13:05:27 +0000755 or \keyword{try}/\keyword{finally}.
756
757 XXX Need better examples of difference from \macro{kwindex}.
Fred Drakeacffaee1999-03-16 16:09:13 +0000758 \end{macrodesc}
759
760
761 Additional macros are provided which are useful for conveniently
762 creating general index entries which should appear at many places
763 in the index by rotating a list of words. These are simple macros
764 that simply use \macro{index} to build some number of index
765 entries. Index entries build using these macros contain both
766 primary and secondary text.
767
Fred Drakeadade921999-04-22 13:05:27 +0000768 \begin{macrodesc}{indexii}{\p{word1}\p{word2}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000769 Build two index entries. This is exactly equivalent to using
770 \code{\e index\{\var{word1}!\var{word2}\}} and
771 \code{\e index\{\var{word2}!\var{word1}\}}.
772 \end{macrodesc}
773
Fred Drakeadade921999-04-22 13:05:27 +0000774 \begin{macrodesc}{indexiii}{\p{word1}\p{word2}\p{word3}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000775 Build three index entries. This is exactly equivalent to using
776 \code{\e index\{\var{word1}!\var{word2} \var{word3}\}},
777 \code{\e index\{\var{word2}!\var{word3}, \var{word1}\}}, and
778 \code{\e index\{\var{word3}!\var{word1} \var{word2}\}}.
779 \end{macrodesc}
780
Fred Drakeadade921999-04-22 13:05:27 +0000781 \begin{macrodesc}{indexiv}{\p{word1}\p{word2}\p{word3}\p{word4}}
Fred Drakeacffaee1999-03-16 16:09:13 +0000782 Build four index entries. This is exactly equivalent to using
783 \code{\e index\{\var{word1}!\var{word2} \var{word3} \var{word4}\}},
784 \code{\e index\{\var{word2}!\var{word3} \var{word4}, \var{word1}\}},
785 \code{\e index\{\var{word3}!\var{word4}, \var{word1} \var{word2}\}},
786 and
787 \code{\e index\{\var{word4}!\var{word1} \var{word2} \var{word3}\}}.
788 \end{macrodesc}
789
790
791\section{Special Names}
792
793 Many special names are used in the Python documentation, including
794 the names of operating systems, programming languages, standards
795 bodies, and the like. Many of these were assigned \LaTeX{} macros
796 at some point in the distant past, and these macros lived on long
797 past their usefulness. In the current markup, these entities are
798 not assigned any special markup, but the preferred spellings are
799 given here to aid authors in maintaining the consistency of
800 presentation in the Python documentation.
801
802 \begin{description}
803 \item[POSIX]
804 The name assigned to a particular group of standards. This is
805 always uppercase.
806
807 \item[Python]
808 The name of our favorite programming language is always
809 capitalized.
810 \end{description}
811
812
813\section{Processing Tools}
814
815 \subsection{External Tools}
816
817 Many tools are needed to be able to process the Python
818 documentation if all supported formats are required. This
Fred Drakeadade921999-04-22 13:05:27 +0000819 section lists the tools used and when each is required. Consult
820 the \file{Doc/README} file to see if there are specific version
821 requirements for any of these.
Fred Drakeacffaee1999-03-16 16:09:13 +0000822
823 \begin{description}
824 \item[\program{dvips}]
825 This program is a typical part of \TeX{} installations. It is
826 used to generate PostScript from the ``device independent''
Fred Drake2c4e0091999-03-29 14:55:55 +0000827 \file{.dvi} files. It is needed for the conversion to
Fred Drakeacffaee1999-03-16 16:09:13 +0000828 PostScript.
829
830 \item[\program{emacs}]
831 Emacs is the kitchen sink of programmers' editors, and a damn
832 fine kitchen sink it is. It also comes with some of the
833 processing needed to support the proper menu structures for
834 Texinfo documents when an info conversion is desired. This is
Fred Drake2c4e0091999-03-29 14:55:55 +0000835 needed for the info conversion. Using \program{xemacs}
Fred Drakeacffaee1999-03-16 16:09:13 +0000836 instead of FSF \program{emacs} may lead to instability in the
837 conversion, but that's because nobody seems to maintain the
838 Emacs Texinfo code in a portable manner.
839
840 \item[\program{latex}]
841 This is a world-class typesetter by Donald Knuth. It is used
842 for the conversion to PostScript, and is needed for the HTML
843 conversion as well (\LaTeX2HTML requires one of the
844 intermediate files it creates).
845
846 \item[\program{latex2html}]
847 Probably the longest Perl script anyone ever attempted to
848 maintain. This converts \LaTeX{} documents to HTML documents,
849 and does a pretty reasonable job. It is required for the
850 conversions to HTML and GNU info.
851
852 \item[\program{lynx}]
853 This is a text-mode Web browser which includes an
854 HTML-to-plain text conversion. This is used to convert
855 \code{howto} documents to text.
856
857 \item[\program{make}]
858 Just about any version should work for the standard documents,
859 but GNU \program{make} is required for the experimental
860 processes in \file{Doc/tools/sgmlconv/}, at least while
861 they're experimental.
862
863 \item[\program{makeindex}]
864 This is a standard program for converting \LaTeX{} index data
865 to a formatted index; it should be included with all \LaTeX{}
866 installations. It is needed for the PDF and PostScript
867 conversions.
868
869 \item[\program{makeinfo}]
870 GNU \program{makeinfo} is used to convert Texinfo documents to
871 GNU info files. Since Texinfo is used as an intermediate
872 format in the info conversion, this program is needed in that
873 conversion.
874
875 \item[\program{pdflatex}]
876 pdf\TeX{} is a relatively new variant of \TeX, and is used to
877 generate the PDF version of the manuals. It is typically
878 installed as part of most of the large \TeX{} distributions.
Fred Drake7a737df1999-04-23 14:41:44 +0000879 \program{pdflatex} is pdf\TeX{} using the \LaTeX{} format.
Fred Drakeacffaee1999-03-16 16:09:13 +0000880
881 \item[\program{perl}]
882 Perl is required for \LaTeX2HTML{} and one of the scripts used
883 to post-process \LaTeX2HTML output, as well as the
Fred Drake2c4e0091999-03-29 14:55:55 +0000884 HTML-to-Texinfo conversion. This is required for
Fred Drakeacffaee1999-03-16 16:09:13 +0000885 the HTML and GNU info conversions.
886
887 \item[\program{python}]
888 Python is used for many of the scripts in the
889 \file{Doc/tools/} directory; it is required for all
890 conversions. This shouldn't be a problem if you're interested
891 in writing documentation for Python!
892 \end{description}
893
894
895 \subsection{Internal Tools}
896
897 This section describes the various scripts that are used to
898 implement various stages of document processing or to orchestrate
Fred Drake2c4e0091999-03-29 14:55:55 +0000899 entire build sequences. Most of these tools are only useful
Fred Drakeacffaee1999-03-16 16:09:13 +0000900 in the context of building the standard documentation, but some
901 are more general.
902
903 \begin{description}
904 \item[\program{mkhowto}]
Fred Drake87f768e1999-05-17 15:22:45 +0000905 This is the primary script used to format third-party
906 documents. It contains all the logic needed to ``get it
907 right.'' The proper way to use this script is to make a
908 symbolic link to it or run it in place; the actual script file
909 must be stored as part of the documentation source tree,
910 though it may be used to format documents outside the
911 tree. Use \program{mkhowto --help} for a list of command line
912 options.
913
914 XXX Need more here.
Fred Drakeacffaee1999-03-16 16:09:13 +0000915 \end{description}
916
917
918\section{Future Directions \label{futures}}
919
920 The history of the Python documentation is full of changes, most of
921 which have been fairly small and evolutionary. There has been a
922 great deal of discussion about making large changes in the markup
923 languages and tools used to process the documentation. This section
924 deals with the nature of the changes and what appears to be the most
925 likely path of future development.
926
927 \subsection{Structured Documentation \label{structured}}
928
929 Most of the small changes to the \LaTeX{} markup have been made
930 with an eye to divorcing the markup from the presentation, making
931 both a bit more maintainable. Over the course of 1998, a large
932 number of changes were made with exactly this in mind; previously,
933 changes had been made but in a less systematic manner and with
934 more concern for not needing to update the existing content. The
935 result has been a highly structured and semantically loaded markup
936 language implemented in \LaTeX. With almost no basic \TeX{} or
937 \LaTeX{} markup in use, however, the markup syntax is about the
938 only evidence of \LaTeX{} in the actual document sources.
939
940 One side effect of this is that while we've been able to use
941 standard ``engines'' for manipulating the documents, such as
942 \LaTeX{} and \LaTeX2HTML, most of the actual transformations have
Fred Drake7a737df1999-04-23 14:41:44 +0000943 been created specifically for Python. The \LaTeX{} document
944 classes and \LaTeX2HTML support are both complete implementations
945 of the specific markup designed for these documents.
Fred Drakeacffaee1999-03-16 16:09:13 +0000946
947 Combining highly customized markup with the somewhat esoteric
948 systems used to process the documents leads us to ask some
949 questions: Can we do this more easily? and, Can we do this
950 better? After a great deal of discussion with the community, we
951 have determined that actively pursuing modern structured
Fred Drake2c4e0091999-03-29 14:55:55 +0000952 documentation systems is worth some investment of time.
Fred Drakeacffaee1999-03-16 16:09:13 +0000953
954 There appear to be two real contenders in this arena: the Standard
955 General Markup Language (SGML), and the Extensible Markup Language
956 (XML). Both of these standards have advantages and disadvantages,
957 and many advantages are shared.
958
959 SGML offers advantages which may appeal most to authors,
960 especially those using ordinary text editors. There are also
961 additional abilities to define content models. A number of
962 high-quality tools with demonstrated maturity is available, but
963 most are not free; for those which are, portability issues remain
964 a problem.
965
966 The advantages of XML include the availability of a large number
967 of evolving tools. Unfortunately, many of the associated
968 standards are still evolving, and the tools will have to follow
969 along. This means that developing a robust tool set that uses
970 more than the basic XML 1.0 recommendation is not possible in the
971 short term. The promised availability of a wide variety of
972 high-quality tools which support some of the most important
973 related standards is not immediate. Many tools are likely to be
974 free.
975
Fred Drakeadade921999-04-22 13:05:27 +0000976 XXX Eventual migration to SGML/XML.
Fred Drakeacffaee1999-03-16 16:09:13 +0000977
978 \subsection{Discussion Forums \label{discussion}}
979
980 Discussion of the future of the Python documentation and related
Fred Drake7a737df1999-04-23 14:41:44 +0000981 topics takes place in the Documentation Special Interest Group, or
982 ``Doc-SIG.'' Information on the group, including mailing list
983 archives and subscription information, is available at
Fred Drakeacffaee1999-03-16 16:09:13 +0000984 \url{http://www.python.org/sigs/doc-sig/}. The SIG is open to all
985 interested parties.
986
987 Comments and bug reports on the standard documents should be sent
988 to \email{python-docs@python.org}. This may include comments
Fred Drakeadade921999-04-22 13:05:27 +0000989 about formatting, content, grammatical and spelling errors, or
990 this document.
Fred Drakeacffaee1999-03-16 16:09:13 +0000991
992\end{document}