Ditched '_find_SET()', since it was a no-value-added wrapper around
[python/dscho.git] / Doc / templates / module.tex
blob84871aabe46dc1883f4dc9eb6ff98379bf18b1ea
1 % Template for a library manual section.
2 % PLEASE REMOVE THE COMMENTS AFTER USING THE TEMPLATE
4 % ==== 0. ====
5 % Copy this file to <mydir>/lib<mymodule>.tex, and edit that file
6 % according to the instructions below.
9 % ==== 1. ====
10 % The section prologue. Give the section a title and provide some
11 % meta-information. References to the module should use
12 % \refbimodindex, \refstmodindex, \refexmodindex or \refmodindex, as
13 % appropriate.
15 \section{\module{spam} ---
16 Short descrition, for section title}
18 % Choose one of these to specify the module module name. If there's
19 % an underscore in the name, use
20 % \declaremodule[modname]{...}{mod_name} instead.
22 \declaremodule{builtin}{spam} % standard library, in C
23 \declaremodule{standard}{spam} % standard library, in Python
24 \declaremodule{extension}{spam} % not standard, in C
25 \declaremodule{}{spam} % not standard, in Python
27 % Portability statement: Uncomment and fill in the parameter to specify the
28 % availability of the module. The parameter can be Unix, IRIX, SunOS, Mac,
29 % Windows, or lots of other stuff. When ``Mac'' is specified, the availability
30 % statement will say ``Macintosh'' and the Module Index may say ``Mac''.
31 % Please use a name that has already been used whenever applicable. If this
32 % is omitted, no availability statement is produced or implied.
34 % \platform{UNIX}
36 % These apply to all modules:
38 \moduleauthor{name}{email} % Author of the module code;
39 % omit if not known.
40 \sectionauthor{name}{email} % Author of the documentation,
41 % even if not a module section.
44 % Leave at least one blank line after this, to simplify ad-hoc tools
45 % that are sometimes used to massage these files.
46 \modulesynopsis{This is a one-line descrition, for the chapter header.}
49 % ==== 2. ====
50 % Give a short overview of what the module does.
51 % If it is platform specific, mention this.
52 % Mention other important restrictions or general operating principles.
53 % For example:
55 The \module{spam} module defines operations for handling cans of Spam.
56 It knows the four generally available Spam varieties and understands
57 both can sizes.
59 Because spamification requires \UNIX{} process management, the module
60 is only available on genuine \UNIX{} systems.
63 % ==== 3. ====
64 % List the public functions defined by the module. Begin with a
65 % standard phrase. You may also list the exceptions and other data
66 % items defined in the module, insofar as they are important for the
67 % user.
69 The \module{spam} module defines the following functions:
71 % ---- 3.1. ----
72 % For each function, use a ``funcdesc'' block. This has exactly two
73 % parameters (each parameters is contained in a set of curly braces):
74 % the first parameter is the function name (this automatically
75 % generates an index entry); the second parameter is the function's
76 % argument list. If there are no arguments, use an empty pair of
77 % curly braces. If there is more than one argument, separate the
78 % arguments with backslash-comma. Optional parts of the parameter
79 % list are contained in \optional{...} (this generates a set of square
80 % brackets around its parameter). Arguments are automatically set in
81 % italics in the parameter list. Each argument should be mentioned at
82 % least once in the description; each usage (even inside \code{...})
83 % should be enclosed in \var{...}.
85 \begin{funcdesc}{open}{filename\optional{, mode\optional{, buffersize}}}
86 Open the file \var{filename} as a can of Spam. The optional
87 \var{mode} and \var{buffersize} arguments specify the read-write mode
88 (\code{'r'} (default) or \code{'w'}) and the buffer size (default:
89 system dependent).
90 \end{funcdesc}
92 % ---- 3.2. ----
93 % Data items are described using a ``datadesc'' block. This has only
94 % one parameter: the item's name.
96 \begin{datadesc}{cansize}
97 The default can size, in ounces. Legal values are 7 and 12. The
98 default varies per supermarket. This variable should not be changed
99 once the \function{open()} function has been called.
100 \end{datadesc}
102 % --- 3.3. ---
103 % Exceptions are described using a ``excdesc'' block. This has only
104 % one parameter: the exception name.
106 \begin{excdesc}{error}
107 Exception raised when an operation fails for a Spam specific reason.
108 The exception argument is a string describing the reason of the
109 failure.
110 \end{excdesc}
112 % ---- 3.4. ----
113 % Other standard environments:
115 % classdesc - Python classes; same arguments are funcdesc
116 % methoddesc - methods, like funcdesc but has an optional parameter
117 % to give the type name: \begin{methoddesc}[mytype]{name}{args}
118 % By default, the type name will be the name of the
119 % last class defined using classdesc. The type name
120 % is required if the type is implemented in C (because
121 % there's no classdesc) or if the class isn't directly
122 % documented (if it's private).
123 % memberdesc - data members, like datadesc, but with an optional
124 % type name like methoddesc.
127 % ==== 4. ====
128 % Now is probably a good time for a complete example. (Alternatively,
129 % an example giving the flavor of the module may be given before the
130 % detailed list of functions.)
132 Example:
134 \begin{verbatim}
135 >>> import spam
136 >>> can = spam.open('/etc/passwd')
137 >>> can.empty()
138 >>> can.close()
139 \end{verbatim}
140 % Note that there is no trailing ">>> " prompt shown.
142 % ==== 5. ====
143 % If your module defines new object types (for a built-in module) or
144 % classes (for a module written in Python), you should list the
145 % methods and instance variables (if any) of each type or class in a
146 % separate subsection.
148 \subsection{Spam Objects}
149 \label{spam-objects}
150 % This label is generally useful for referencing this section, but is
151 % also used to give a filename when generating HTML.
153 Spam objects, as returned by \function{open()} above, have the
154 following methods:
156 \begin{methoddesc}[spam]{empty}{}
157 Empty the can into the trash.
158 \end{methoddesc}