blob: 3ce62f4f962564db484410f5ad1b7c58ad681ec0 [file] [log] [blame]
Fred Drake6659c301998-03-03 22:02:19 +00001%
Walter Dörwaldf0dfc7a2003-10-20 14:01:56 +00002% python.sty for the Python docummentation [works only with Latex2e]
Fred Drake6659c301998-03-03 22:02:19 +00003%
4
5\NeedsTeXFormat{LaTeX2e}[1995/12/01]
6\ProvidesPackage{python}
Fred Drakec0b2e451998-03-25 14:53:43 +00007 [1998/01/11 LaTeX package (Python markup)]
Fred Drake6659c301998-03-03 22:02:19 +00008
Fred Drakeda72b932000-09-21 15:58:02 +00009\RequirePackage{longtable}
Fred Drake712f0702005-03-24 06:21:37 +000010\RequirePackage{underscore}
Fred Drakeda72b932000-09-21 15:58:02 +000011
Fred Drake9466b9a1999-03-18 16:18:27 +000012% Uncomment these two lines to ignore the paper size and make the page
13% size more like a typical published manual.
14%\renewcommand{\paperheight}{9in}
15%\renewcommand{\paperwidth}{8.5in} % typical squarish manual
16%\renewcommand{\paperwidth}{7in} % O'Reilly ``Programmming Python''
17
Fred Drake454a4fb1998-04-01 22:20:14 +000018% These packages can be used to add marginal annotations which indicate
19% index entries and labels; useful for reviewing this messy documentation!
20%
21%\RequirePackage{showkeys}
22%\RequirePackage{showidx}
23
Fred Drakecdd6e4d2004-12-01 06:30:31 +000024% If we ever want to indent paragraphs, this needs to be changed.
25% This is used inside the macros defined here instead of coding
26% \noindent directly.
27\let\py@parindent=\noindent
28
Fred Drakec0b2e451998-03-25 14:53:43 +000029% for PDF output, use maximal compression & a lot of other stuff
30% (test for PDF recommended by Tanmoy Bhattacharya <tanmoy@qcd.lanl.gov>)
31%
Fred Drake24340ea1998-04-28 18:30:34 +000032\newif\ifpy@doing@page@targets
33\py@doing@page@targetsfalse
Fred Drake6cb71491998-03-27 05:22:53 +000034
Fred Drakee59feb52001-10-29 21:02:28 +000035\newif\ifpdf\pdffalse
Fred Drakec0b2e451998-03-25 14:53:43 +000036\ifx\pdfoutput\undefined\else\ifcase\pdfoutput
Fred Drakec0b2e451998-03-25 14:53:43 +000037\else
Fred Drakee59feb52001-10-29 21:02:28 +000038 \pdftrue
Fred Drake6659c301998-03-03 22:02:19 +000039 \input{pdfcolor}
Fred Drake24340ea1998-04-28 18:30:34 +000040 \let\py@LinkColor=\NavyBlue
41 \let\py@NormalColor=\Black
Fred Drake6659c301998-03-03 22:02:19 +000042 \pdfcompresslevel=9
Fred Drakeba1700c1998-05-11 20:42:54 +000043 \pdfpagewidth=\paperwidth % page width of PDF output
44 \pdfpageheight=\paperheight % page height of PDF output
Fred Drakeebcb6581998-03-06 21:25:17 +000045 %
Fred Drakea2c2a831998-04-15 17:50:01 +000046 % Pad the number with '0' to 3 digits wide so no page name is a prefix
47 % of any other.
48 %
Fred Drakea488f301998-07-23 17:50:45 +000049 \newcommand{\py@targetno}[1]{\ifnum#1<100 0\fi\ifnum#1<10 0\fi#1}
50 \newcommand{\py@pageno}{\py@targetno\thepage}
Fred Drakea2c2a831998-04-15 17:50:01 +000051 %
Fred Drakeebcb6581998-03-06 21:25:17 +000052 % This definition allows the entries in the page-view of the ToC to be
53 % active links. Some work, some don't.
54 %
Fred Drake24340ea1998-04-28 18:30:34 +000055 \let\py@OldContentsline=\contentsline
Fred Drakeaa2aea01999-01-27 17:37:36 +000056 %
Fred Drake0e4cd7f2002-03-16 04:52:36 +000057 % Backward compatibility hack: pdfTeX 0.13 defined \pdfannotlink,
58 % but it changed to \pdfstartlink in 0.14. This let's us use either
59 % version and still get useful behavior.
60 %
61 \@ifundefined{pdfstartlink}{
62 \let\pdfstartlink=\pdfannotlink
63 }{}
64 %
Fred Drakecdd6e4d2004-12-01 06:30:31 +000065 % The \py@parindent here is a hack -- we're forcing pdfTeX into
66 % horizontal mode since \pdfstartlink requires that.
67 \def\py@pdfstartlink{%
68 \ifvmode\py@parindent\fi%
69 \pdfstartlink%
70 }
71 %
Fred Drakeaa2aea01999-01-27 17:37:36 +000072 % Macro that takes two args: the name to link to and the content of
73 % the link. This takes care of the PDF magic, getting the colors
74 % the same for each link, and avoids having lots of garbage all over
75 % this style file.
76 \newcommand{\py@linkToName}[2]{%
Fred Drakecdd6e4d2004-12-01 06:30:31 +000077 \py@pdfstartlink attr{/Border [0 0 0]} goto name{#1}%
Fred Drakeaa2aea01999-01-27 17:37:36 +000078 \py@LinkColor#2\py@NormalColor%
79 \pdfendlink%
Fred Drake53815882002-03-15 23:21:37 +000080 }
Fred Drakea2c2a831998-04-15 17:50:01 +000081 % Compute the padded page number separately since we end up with a pair of
82 % \relax tokens; this gets the right string computed and works.
Fred Drake6659c301998-03-03 22:02:19 +000083 \renewcommand{\contentsline}[3]{%
Fred Drakea2c2a831998-04-15 17:50:01 +000084 \def\my@pageno{\py@targetno{#3}}%
Fred Drakeaa2aea01999-01-27 17:37:36 +000085 \py@OldContentsline{#1}{\py@linkToName{page\my@pageno}{#2}}{#3}%
Fred Drake6659c301998-03-03 22:02:19 +000086 }
Fred Drakeebcb6581998-03-06 21:25:17 +000087 \AtEndDocument{
Neal Norwitz5268c392004-08-21 15:13:52 +000088 \def\_{\string_}
Fred Drakec0b2e451998-03-25 14:53:43 +000089 \InputIfFileExists{\jobname.bkm}{\pdfcatalog{/PageMode /UseOutlines}}{}
Fred Drakeebcb6581998-03-06 21:25:17 +000090 }
Fred Drakea2c2a831998-04-15 17:50:01 +000091 \newcommand{\py@target}[1]{%
Fred Drake24340ea1998-04-28 18:30:34 +000092 \ifpy@doing@page@targets%
Fred Drake9b8afde1999-03-24 14:16:17 +000093 {\pdfdest name{#1} xyz}%
Fred Drakea2c2a831998-04-15 17:50:01 +000094 \fi%
95 }
Fred Drake24340ea1998-04-28 18:30:34 +000096 \let\py@OldLabel=\label
Fred Drake6659c301998-03-03 22:02:19 +000097 \renewcommand{\label}[1]{%
Fred Drake24340ea1998-04-28 18:30:34 +000098 \py@OldLabel{#1}%
Fred Drakea2c2a831998-04-15 17:50:01 +000099 \py@target{label-#1}%
Fred Drake6659c301998-03-03 22:02:19 +0000100 }
Fred Drakeba1700c1998-05-11 20:42:54 +0000101 % This stuff adds a page# destination to every PDF page, where # is three
102 % digits wide, padded with leading zeros. This doesn't really help with
103 % the frontmatter, but does fine with the body.
Fred Drake6659c301998-03-03 22:02:19 +0000104 %
105 % This is *heavily* based on the hyperref package.
106 %
Fred Drake1c8d0e01998-03-07 05:29:15 +0000107 \def\@begindvi{%
108 \unvbox \@begindvibox
109 \@hyperfixhead
Fred Drake6659c301998-03-03 22:02:19 +0000110 }
Fred Drake1c8d0e01998-03-07 05:29:15 +0000111 \def\@hyperfixhead{%
112 \let\H@old@thehead\@thehead
Fred Drakea2c2a831998-04-15 17:50:01 +0000113 \global\def\@foo{\py@target{page\py@pageno}}%
Fred Drake1c8d0e01998-03-07 05:29:15 +0000114 \expandafter\ifx\expandafter\@empty\H@old@thehead
115 \def\H@old@thehead{\hfil}\fi
116 \def\@thehead{\@foo\relax\H@old@thehead}%
Fred Drake6659c301998-03-03 22:02:19 +0000117 }
Fred Drakec0b2e451998-03-25 14:53:43 +0000118\fi\fi
Fred Drake6659c301998-03-03 22:02:19 +0000119
120% Increase printable page size (copied from fullpage.sty)
121\topmargin 0pt
122\advance \topmargin by -\headheight
123\advance \topmargin by -\headsep
124
125% attempt to work a little better for A4 users
Fred Drake9466b9a1999-03-18 16:18:27 +0000126\textheight \paperheight
127\advance\textheight by -2in
Fred Drake6659c301998-03-03 22:02:19 +0000128
129\oddsidemargin 0pt
Fred Drake9466b9a1999-03-18 16:18:27 +0000130\evensidemargin 0pt
131%\evensidemargin -.25in % for ``manual size'' documents
Fred Drake6659c301998-03-03 22:02:19 +0000132\marginparwidth 0.5in
133
Fred Drake9466b9a1999-03-18 16:18:27 +0000134\textwidth \paperwidth
135\advance\textwidth by -2in
Fred Drake6659c301998-03-03 22:02:19 +0000136
137
138% Style parameters and macros used by most documents here
139\raggedbottom
140\sloppy
141\parindent = 0mm
Fred Drake24340ea1998-04-28 18:30:34 +0000142\parskip = 2mm
Fred Drakeab357ec2001-03-02 18:57:05 +0000143\hbadness = 5000 % don't print trivial gripes
Fred Drake6659c301998-03-03 22:02:19 +0000144
Fred Drakeab357ec2001-03-02 18:57:05 +0000145\pagestyle{empty} % start this way; change for
146\pagenumbering{roman} % ToC & chapters
Fred Drake6659c301998-03-03 22:02:19 +0000147
148% Use this to set the font family for headers and other decor:
Fred Drake24340ea1998-04-28 18:30:34 +0000149\newcommand{\py@HeaderFamily}{\sffamily}
Fred Drake6659c301998-03-03 22:02:19 +0000150
Fred Drakeff031cf2002-10-31 21:04:34 +0000151% Set up abstract ways to get the normal and smaller font sizes that
152% work even in footnote context.
153\newif\ifpy@infootnote \py@infootnotefalse
Fred Drake2eba52f2002-11-04 16:29:31 +0000154\let\py@oldmakefntext\@makefntext
155\def\@makefntext#1{%
Fred Drakeff031cf2002-10-31 21:04:34 +0000156 \bgroup%
157 \py@infootnotetrue
Fred Drake2eba52f2002-11-04 16:29:31 +0000158 \py@oldmakefntext{#1}%
Fred Drakeff031cf2002-10-31 21:04:34 +0000159 \egroup%
160}
161\def\py@defaultsize{%
162 \ifpy@infootnote\footnotesize\else\normalsize\fi%
163}
164\def\py@smallsize{%
165 \ifpy@infootnote\scriptsize\else\small\fi%
166}
167
Fred Drake6659c301998-03-03 22:02:19 +0000168% Redefine the 'normal' header/footer style when using "fancyhdr" package:
Fred Drake1c8d0e01998-03-07 05:29:15 +0000169\@ifundefined{fancyhf}{}{
Fred Drake6659c301998-03-03 22:02:19 +0000170 % Use \pagestyle{normal} as the primary pagestyle for text.
171 \fancypagestyle{normal}{
172 \fancyhf{}
Fred Drake24340ea1998-04-28 18:30:34 +0000173 \fancyfoot[LE,RO]{{\py@HeaderFamily\thepage}}
174 \fancyfoot[LO]{{\py@HeaderFamily\nouppercase{\rightmark}}}
175 \fancyfoot[RE]{{\py@HeaderFamily\nouppercase{\leftmark}}}
Fred Drake6659c301998-03-03 22:02:19 +0000176 \renewcommand{\headrulewidth}{0pt}
177 \renewcommand{\footrulewidth}{0.4pt}
178 }
179 % Update the plain style so we get the page number & footer line,
180 % but not a chapter or section title. This is to keep the first
181 % page of a chapter and the blank page between chapters `clean.'
182 \fancypagestyle{plain}{
183 \fancyhf{}
Fred Drake24340ea1998-04-28 18:30:34 +0000184 \fancyfoot[LE,RO]{{\py@HeaderFamily\thepage}}
Fred Drake6659c301998-03-03 22:02:19 +0000185 \renewcommand{\headrulewidth}{0pt}
186 \renewcommand{\footrulewidth}{0.4pt}
187 }
188 % Redefine \cleardoublepage so that the blank page between chapters
189 % gets the plain style and not the fancy style. This is described
190 % in the documentation for the fancyhdr package by Piet von Oostrum.
Fred Drake1c8d0e01998-03-07 05:29:15 +0000191 \@ifundefined{chapter}{}{
Fred Drake28f13911998-03-04 21:47:59 +0000192 \renewcommand{\cleardoublepage}{
Fred Drake1c8d0e01998-03-07 05:29:15 +0000193 \clearpage\if@openright \ifodd\c@page\else
Fred Drake28f13911998-03-04 21:47:59 +0000194 \hbox{}
195 \thispagestyle{plain}
196 \newpage
Fred Drake1c8d0e01998-03-07 05:29:15 +0000197 \if@twocolumn\hbox{}\newpage\fi\fi\fi
Fred Drake28f13911998-03-04 21:47:59 +0000198 }
199 }
Fred Drake6659c301998-03-03 22:02:19 +0000200}
201
Fred Drake6659c301998-03-03 22:02:19 +0000202% This sets up the {verbatim} environment to be indented and a minipage,
203% and to have all the other mostly nice properties that we want for
204% code samples.
205
Fred Drake9466b9a1999-03-18 16:18:27 +0000206\let\py@OldVerbatim=\verbatim
207\let\py@OldEndVerbatim=\endverbatim
208\RequirePackage{verbatim}
Fred Drake00f712e2002-03-28 22:28:43 +0000209\let\py@OldVerbatimInput=\verbatiminput
Fred Drake9466b9a1999-03-18 16:18:27 +0000210
Fred Drake6659c301998-03-03 22:02:19 +0000211% Variable used by begin code command
Fred Drake24340ea1998-04-28 18:30:34 +0000212\newlength{\py@codewidth}
Fred Drake6659c301998-03-03 22:02:19 +0000213
Fred Drake6659c301998-03-03 22:02:19 +0000214\renewcommand{\verbatim}{%
Fred Drake9466b9a1999-03-18 16:18:27 +0000215 \setlength{\parindent}{1cm}%
Fred Drake6659c301998-03-03 22:02:19 +0000216 % Calculate the text width for the minipage:
Fred Drake24340ea1998-04-28 18:30:34 +0000217 \setlength{\py@codewidth}{\linewidth}%
218 \addtolength{\py@codewidth}{-\parindent}%
Fred Drake6659c301998-03-03 22:02:19 +0000219 %
Fred Drake9466b9a1999-03-18 16:18:27 +0000220 \par\indent%
Fred Drake24340ea1998-04-28 18:30:34 +0000221 \begin{minipage}[t]{\py@codewidth}%
Fred Drake6659c301998-03-03 22:02:19 +0000222 \small%
Fred Drake24340ea1998-04-28 18:30:34 +0000223 \py@OldVerbatim%
Fred Drake6659c301998-03-03 22:02:19 +0000224}
225\renewcommand{\endverbatim}{%
Fred Drake24340ea1998-04-28 18:30:34 +0000226 \py@OldEndVerbatim%
Fred Drake6659c301998-03-03 22:02:19 +0000227 \end{minipage}%
Fred Drake6659c301998-03-03 22:02:19 +0000228}
Fred Drake00f712e2002-03-28 22:28:43 +0000229\renewcommand{\verbatiminput}[1]{%
230 {\setlength{\parindent}{1cm}%
231 % Calculate the text width for the minipage:
232 \setlength{\py@codewidth}{\linewidth}%
233 \addtolength{\py@codewidth}{-\parindent}%
234 %
235 \small%
236 \begin{list}{}{\setlength{\leftmargin}{1cm}}
237 \item%
238 \py@OldVerbatimInput{#1}%
239 \end{list}
240 }%
241}
Fred Drake6659c301998-03-03 22:02:19 +0000242
Fred Drakeb5309a92001-04-10 15:53:06 +0000243% This does a similar thing for the {alltt} environment:
244\RequirePackage{alltt}
245\let\py@OldAllTT=\alltt
246\let\py@OldEndAllTT=\endalltt
247
248\renewcommand{\alltt}{%
249 \setlength{\parindent}{1cm}%
250 % Calculate the text width for the minipage:
251 \setlength{\py@codewidth}{\linewidth}%
252 \addtolength{\py@codewidth}{-\parindent}%
Fred Drake29f59332004-02-10 18:30:22 +0000253 \let\e=\textbackslash%
Fred Drakeb5309a92001-04-10 15:53:06 +0000254 %
255 \par\indent%
256 \begin{minipage}[t]{\py@codewidth}%
257 \small%
258 \py@OldAllTT%
259}
260\renewcommand{\endalltt}{%
261 \py@OldEndAllTT%
262 \end{minipage}%
263}
264
Fred Drake6cb71491998-03-27 05:22:53 +0000265
Fred Drakea488f301998-07-23 17:50:45 +0000266\newcommand{\py@modulebadkey}{{--just-some-junk--}}
Fred Drake6659c301998-03-03 22:02:19 +0000267
Fred Drake6659c301998-03-03 22:02:19 +0000268
269%% Lots of index-entry generation support.
270
271% Command to wrap around stuff that refers to function / module /
272% attribute names in the index. Default behavior: like \code{}. To
273% just keep the index entries in the roman font, uncomment the second
Fred Drakea488f301998-07-23 17:50:45 +0000274% definition; it matches O'Reilly style more.
Fred Drake6659c301998-03-03 22:02:19 +0000275%
Fred Drake24340ea1998-04-28 18:30:34 +0000276\newcommand{\py@idxcode}[1]{\texttt{#1}}
277%\renewcommand{\py@idxcode}[1]{#1}
Fred Drake6659c301998-03-03 22:02:19 +0000278
279% Command to generate two index entries (using subentries)
280\newcommand{\indexii}[2]{\index{#1!#2}\index{#2!#1}}
281
282% And three entries (using only one level of subentries)
283\newcommand{\indexiii}[3]{\index{#1!#2 #3}\index{#2!#3, #1}\index{#3!#1 #2}}
284
285% And four (again, using only one level of subentries)
286\newcommand{\indexiv}[4]{
287\index{#1!#2 #3 #4}
288\index{#2!#3 #4, #1}
289\index{#3!#4, #1 #2}
290\index{#4!#1 #2 #3}
291}
292
293% Command to generate a reference to a function, statement, keyword,
294% operator.
Fred Drake0cabff91998-05-06 19:36:01 +0000295\newcommand{\kwindex}[1]{\indexii{keyword}{#1@{\py@idxcode{#1}}}}
Fred Drake24340ea1998-04-28 18:30:34 +0000296\newcommand{\stindex}[1]{\indexii{statement}{#1@{\py@idxcode{#1}}}}
297\newcommand{\opindex}[1]{\indexii{operator}{#1@{\py@idxcode{#1}}}}
298\newcommand{\exindex}[1]{\indexii{exception}{#1@{\py@idxcode{#1}}}}
Fred Drake6659c301998-03-03 22:02:19 +0000299\newcommand{\obindex}[1]{\indexii{object}{#1}}
Fred Drakea33c5662000-10-29 05:19:16 +0000300\newcommand{\bifuncindex}[1]{%
301 \index{#1@{\py@idxcode{#1()}} (built-in function)}}
Fred Drake6659c301998-03-03 22:02:19 +0000302
303% Add an index entry for a module
Fred Drake24340ea1998-04-28 18:30:34 +0000304\newcommand{\py@refmodule}[2]{\index{#1@{\py@idxcode{#1}} (#2module)}}
305\newcommand{\refmodindex}[1]{\py@refmodule{#1}{}}
306\newcommand{\refbimodindex}[1]{\py@refmodule{#1}{built-in }}
307\newcommand{\refexmodindex}[1]{\py@refmodule{#1}{extension }}
308\newcommand{\refstmodindex}[1]{\py@refmodule{#1}{standard }}
Fred Drake6659c301998-03-03 22:02:19 +0000309
Fred Drakeda943741999-01-13 17:09:06 +0000310% Refer to a module's documentation using a hyperlink of the module's
311% name, at least if we're building PDF:
Fred Drakee59feb52001-10-29 21:02:28 +0000312\ifpdf
Fred Drakeaa2aea01999-01-27 17:37:36 +0000313 \newcommand{\refmodule}[2][\py@modulebadkey]{%
Fred Drakeda943741999-01-13 17:09:06 +0000314 \ifx\py@modulebadkey#1\def\py@modulekey{#2}\else\def\py@modulekey{#1}\fi%
Fred Drakeaa2aea01999-01-27 17:37:36 +0000315 \py@linkToName{label-module-\py@modulekey}{\module{#2}}%
Fred Drakeda943741999-01-13 17:09:06 +0000316 }
Fred Drakee59feb52001-10-29 21:02:28 +0000317\else
318 \newcommand{\refmodule}[2][\py@modulebadkey]{\module{#2}}
319\fi
Fred Drakeda943741999-01-13 17:09:06 +0000320
Fred Drake6659c301998-03-03 22:02:19 +0000321% support for the module index
Fred Drake24340ea1998-04-28 18:30:34 +0000322\newif\ifpy@UseModuleIndex
323\py@UseModuleIndexfalse
Fred Drakeb390daf1998-03-09 16:35:36 +0000324
Fred Drakeb390daf1998-03-09 16:35:36 +0000325\newcommand{\makemodindex}{
326 \newwrite\modindexfile
327 \openout\modindexfile=mod\jobname.idx
Fred Drake24340ea1998-04-28 18:30:34 +0000328 \py@UseModuleIndextrue
Fred Drakeb390daf1998-03-09 16:35:36 +0000329}
330
Fred Drake0ee9f721998-03-12 06:41:40 +0000331% Add the defining entry for a module
Fred Drake24340ea1998-04-28 18:30:34 +0000332\newcommand{\py@modindex}[2]{%
Fred Drakea488f301998-07-23 17:50:45 +0000333 \renewcommand{\py@thismodule}{#1}
Fred Drake6cb71491998-03-27 05:22:53 +0000334 \setindexsubitem{(in module #1)}%
Fred Drake24340ea1998-04-28 18:30:34 +0000335 \index{#1@{\py@idxcode{#1}} (#2module)|textbf}%
336 \ifpy@UseModuleIndex%
Fred Drake0c275fa1999-03-02 16:17:44 +0000337 \@ifundefined{py@modplat@\py@thismodulekey}{
338 \write\modindexfile{\protect\indexentry{#1@{\texttt{#1}}}{\thepage}}%
339 }{\write\modindexfile{\protect\indexentry{#1@{\texttt{#1} %
Fred Drake9466b9a1999-03-18 16:18:27 +0000340 \emph{(\py@platformof[\py@thismodulekey]{})}}}{\thepage}}%
Fred Drake0c275fa1999-03-02 16:17:44 +0000341 }
Fred Drake0ee9f721998-03-12 06:41:40 +0000342 \fi%
343}
344
Fred Drake9466b9a1999-03-18 16:18:27 +0000345% *** XXX *** THE NEXT FOUR MACROS ARE NOW OBSOLETE !!! ***
346
Fred Drake6659c301998-03-03 22:02:19 +0000347% built-in & Python modules in the main distribution
Fred Drake9466b9a1999-03-18 16:18:27 +0000348\newcommand{\bimodindex}[1]{\py@modindex{#1}{built-in }%
349 \typeout{*** MACRO bimodindex IS OBSOLETE -- USE declaremodule INSTEAD!}}
350\newcommand{\stmodindex}[1]{\py@modindex{#1}{standard }%
351 \typeout{*** MACRO stmodindex IS OBSOLETE -- USE declaremodule INSTEAD!}}
Fred Drake6659c301998-03-03 22:02:19 +0000352
353% Python & extension modules outside the main distribution
Fred Drake9466b9a1999-03-18 16:18:27 +0000354\newcommand{\modindex}[1]{\py@modindex{#1}{}%
355 \typeout{*** MACRO modindex IS OBSOLETE -- USE declaremodule INSTEAD!}}
356\newcommand{\exmodindex}[1]{\py@modindex{#1}{extension }%
357 \typeout{*** MACRO exmodindex IS OBSOLETE -- USE declaremodule INSTEAD!}}
Fred Drake6659c301998-03-03 22:02:19 +0000358
359% Additional string for an index entry
Fred Drakeba828782000-04-03 04:19:14 +0000360\newif\ifpy@usingsubitem\py@usingsubitemfalse
361\newcommand{\py@indexsubitem}{}
362\newcommand{\setindexsubitem}[1]{\renewcommand{\py@indexsubitem}{ #1}%
363 \py@usingsubitemtrue}
364\newcommand{\ttindex}[1]{%
365 \ifpy@usingsubitem
366 \index{#1@{\py@idxcode{#1}}\py@indexsubitem}%
367 \else%
368 \index{#1@{\py@idxcode{#1}}}%
369 \fi%
370}
Fred Drake0ee9f721998-03-12 06:41:40 +0000371\newcommand{\withsubitem}[2]{%
372 \begingroup%
Fred Drakeec77e652000-10-30 06:22:22 +0000373 \def\ttindex##1{\index{##1@{\py@idxcode{##1}} #1}}%
374 #2%
Fred Drake0ee9f721998-03-12 06:41:40 +0000375 \endgroup%
376}
Fred Drake6659c301998-03-03 22:02:19 +0000377
Fred Drake53714971998-04-02 22:33:16 +0000378
Fred Drakea488f301998-07-23 17:50:45 +0000379% Module synopsis processing -----------------------------------------------
380%
Fred Drake0c275fa1999-03-02 16:17:44 +0000381\newcommand{\py@thisclass}{}
382\newcommand{\py@thismodule}{}
383\newcommand{\py@thismodulekey}{}
384\newcommand{\py@thismoduletype}{}
385
Fred Drake9466b9a1999-03-18 16:18:27 +0000386\newcommand{\py@standardIndexModule}[1]{\py@modindex{#1}{standard }}
387\newcommand{\py@builtinIndexModule}[1]{\py@modindex{#1}{built-in }}
388\newcommand{\py@extensionIndexModule}[1]{\py@modindex{#1}{extension }}
389\newcommand{\py@IndexModule}[1]{\py@modindex{#1}{}}
Fred Drakea488f301998-07-23 17:50:45 +0000390
Fred Drake0c275fa1999-03-02 16:17:44 +0000391\newif\ifpy@HaveModSynopsis \py@HaveModSynopsisfalse
392\newif\ifpy@ModSynopsisFileIsOpen \py@ModSynopsisFileIsOpenfalse
393\newif\ifpy@HaveModPlatform \py@HaveModPlatformfalse
Fred Drakea488f301998-07-23 17:50:45 +0000394
395% \declaremodule[key]{type}{name}
396\newcommand{\declaremodule}[3][\py@modulebadkey]{
397 \py@openModSynopsisFile
398 \renewcommand{\py@thismoduletype}{#2}
Fred Drakea488f301998-07-23 17:50:45 +0000399 \ifx\py@modulebadkey#1
400 \renewcommand{\py@thismodulekey}{#3}
401 \else
402 \renewcommand{\py@thismodulekey}{#1}
403 \fi
Fred Drake5bc8d991999-05-17 14:47:10 +0000404 \@ifundefined{py@#2IndexModule}{%
405 \typeout{*** MACRO declaremodule called with unknown module type: `#2'}
Fred Drake66823021999-05-17 14:57:26 +0000406 \py@IndexModule{#3}%
Fred Drake5bc8d991999-05-17 14:47:10 +0000407 }{%
408 \csname py@#2IndexModule\endcsname{#3}%
409 }
Fred Drakea488f301998-07-23 17:50:45 +0000410 \label{module-\py@thismodulekey}
Fred Drakea488f301998-07-23 17:50:45 +0000411}
Fred Drake0c275fa1999-03-02 16:17:44 +0000412\newif\ifpy@ModPlatformFileIsOpen \py@ModPlatformFileIsOpenfalse
413\newcommand{\py@ModPlatformFilename}{\jobname.pla}
414\newcommand{\platform}[1]{
415 \ifpy@ModPlatformFileIsOpen\else
416 \newwrite\py@ModPlatformFile
417 \openout\py@ModPlatformFile=\py@ModPlatformFilename
418 \py@ModPlatformFileIsOpentrue
419 \fi
Fred Drake0c275fa1999-03-02 16:17:44 +0000420}
421\InputIfFileExists{\jobname.pla}{}{}
Fred Drake9466b9a1999-03-18 16:18:27 +0000422\newcommand{\py@platformof}[2][\py@modulebadkey]{%
Fred Drake0c275fa1999-03-02 16:17:44 +0000423 \ifx\py@modulebadkey#1 \def\py@key{#2}%
424 \else \def\py@key{#1}%
425 \fi%
426 \csname py@modplat@\py@key\endcsname%
427}
428\newcommand{\ignorePlatformAnnotation}[1]{}
Fred Drakea488f301998-07-23 17:50:45 +0000429
Fred Drakeb75c6151998-08-10 18:41:43 +0000430% \moduleauthor{name}{email}
431\newcommand{\moduleauthor}[2]{}
432
433% \sectionauthor{name}{email}
434\newcommand{\sectionauthor}[2]{}
435
Fred Drakea488f301998-07-23 17:50:45 +0000436
437\newcommand{\py@defsynopsis}{Module has no synopsis.}
438\newcommand{\py@modulesynopsis}{\py@defsynopsis}
439\newcommand{\modulesynopsis}[1]{
Fred Drake0c275fa1999-03-02 16:17:44 +0000440 \py@HaveModSynopsistrue
Fred Drakea488f301998-07-23 17:50:45 +0000441 \renewcommand{\py@modulesynopsis}{#1}
442}
443
444% define the file
445\newwrite\py@ModSynopsisFile
446
447% hacked from \addtocontents from latex.ltx:
448\long\def\py@writeModSynopsisFile#1{%
449 \protected@write\py@ModSynopsisFile%
450 {\let\label\@gobble \let\index\@gobble \let\glossary\@gobble}%
451 {\string#1}%
452}
453\newcommand{\py@closeModSynopsisFile}{
454 \ifpy@ModSynopsisFileIsOpen
455 \closeout\py@ModSynopsisFile
456 \py@ModSynopsisFileIsOpenfalse
457 \fi
458}
459\newcommand{\py@openModSynopsisFile}{
460 \ifpy@ModSynopsisFileIsOpen\else
461 \openout\py@ModSynopsisFile=\py@ModSynopsisFilename
462 \py@ModSynopsisFileIsOpentrue
463 \fi
464}
465
466\newcommand{\py@ProcessModSynopsis}{
467 \ifpy@HaveModSynopsis
468 \py@writeModSynopsisFile{\modulesynopsis%
469 {\py@thismodulekey}{\py@thismodule}%
470 {\py@thismoduletype}{\py@modulesynopsis}}%
471 \py@HaveModSynopsisfalse
472 \fi
473 \renewcommand{\py@modulesynopsis}{\py@defsynopsis}
474}
475\AtEndDocument{\py@ProcessModSynopsis\py@closeModSynopsisFile}
476
Fred Drake0c275fa1999-03-02 16:17:44 +0000477
478\long\def\py@writeModPlatformFile#1{%
479 \protected@write\py@ModPlatformFile%
480 {\let\label\@gobble \let\index\@gobble \let\glossary\@gobble}%
481 {\string#1}%
482}
483
484
Fred Drakea488f301998-07-23 17:50:45 +0000485\newcommand{\localmoduletable}{
486 \IfFileExists{\py@ModSynopsisFilename}{
487 \begin{synopsistable}
488 \input{\py@ModSynopsisFilename}
489 \end{synopsistable}
490 }{}
491}
492
Fred Drakee59feb52001-10-29 21:02:28 +0000493\ifpdf
Fred Drakeaa2aea01999-01-27 17:37:36 +0000494 \newcommand{\py@ModSynopsisSummary}[4]{%
495 \py@linkToName{label-module-#1}{\bfcode{#2}} & #4\\
496 }
Fred Drakee59feb52001-10-29 21:02:28 +0000497\else
498 \newcommand{\py@ModSynopsisSummary}[4]{\bfcode{#2} & #4\\}
499\fi
Fred Drakea488f301998-07-23 17:50:45 +0000500\newenvironment{synopsistable}{
501 % key, name, type, synopsis
502 \let\modulesynopsis=\py@ModSynopsisSummary
503 \begin{tabular}{ll}
504}{
505 \end{tabular}
506}
507%
508% --------------------------------------------------------------------------
509
510
Fred Drakea488f301998-07-23 17:50:45 +0000511\newcommand{\py@reset}{
Fred Drakeba828782000-04-03 04:19:14 +0000512 \py@usingsubitemfalse
Fred Drakea488f301998-07-23 17:50:45 +0000513 \py@ProcessModSynopsis
514 \renewcommand{\py@thisclass}{}
515 \renewcommand{\py@thismodule}{}
516 \renewcommand{\py@thismodulekey}{}
517 \renewcommand{\py@thismoduletype}{}
518}
519
520% Augment the sectioning commands used to get our own font family in place,
521% and reset some internal data items:
522\renewcommand{\section}{\py@reset%
523 \@startsection{section}{1}{\z@}%
524 {-3.5ex \@plus -1ex \@minus -.2ex}%
525 {2.3ex \@plus.2ex}%
526 {\reset@font\Large\py@HeaderFamily}}
527\renewcommand{\subsection}{\@startsection{subsection}{2}{\z@}%
528 {-3.25ex\@plus -1ex \@minus -.2ex}%
529 {1.5ex \@plus .2ex}%
530 {\reset@font\large\py@HeaderFamily}}
531\renewcommand{\subsubsection}{\@startsection{subsubsection}{3}{\z@}%
532 {-3.25ex\@plus -1ex \@minus -.2ex}%
533 {1.5ex \@plus .2ex}%
534 {\reset@font\normalsize\py@HeaderFamily}}
535\renewcommand{\paragraph}{\@startsection{paragraph}{4}{\z@}%
536 {3.25ex \@plus1ex \@minus.2ex}%
537 {-1em}%
538 {\reset@font\normalsize\py@HeaderFamily}}
539\renewcommand{\subparagraph}{\@startsection{subparagraph}{5}{\parindent}%
540 {3.25ex \@plus1ex \@minus .2ex}%
541 {-1em}%
542 {\reset@font\normalsize\py@HeaderFamily}}
543
544
Fred Drake53714971998-04-02 22:33:16 +0000545% Now for a lot of semantically-loaded environments that do a ton of magical
546% things to get the right formatting and index entries for the stuff in
547% Python modules and C API.
548
549
Fred Drake6659c301998-03-03 22:02:19 +0000550% {fulllineitems} is used in one place in libregex.tex, but is really for
551% internal use in this file.
552%
Fred Drakef9acc591998-09-09 15:27:43 +0000553\newcommand{\py@itemnewline}[1]{%
554 \@tempdima\linewidth%
555 \advance\@tempdima \leftmargin\makebox[\@tempdima][l]{#1}%
556}
557
Fred Drake6659c301998-03-03 22:02:19 +0000558\newenvironment{fulllineitems}{
559 \begin{list}{}{\labelwidth \leftmargin \labelsep 0pt
560 \rightmargin 0pt \topsep -\parskip \partopsep \parskip
561 \itemsep -\parsep
Fred Drakef9acc591998-09-09 15:27:43 +0000562 \let\makelabel=\py@itemnewline}
Fred Drake6659c301998-03-03 22:02:19 +0000563}{\end{list}}
564
Fred Drake6cb71491998-03-27 05:22:53 +0000565% \optional is mostly for use in the arguments parameters to the various
566% {*desc} environments defined below, but may be used elsewhere. Known to
567% be used in the debugger chapter.
Fred Drake24340ea1998-04-28 18:30:34 +0000568%
569% Typical usage:
570%
571% \begin{funcdesc}{myfunc}{reqparm\optional{, optparm}}
572% ^^^ ^^^
573% No space here No space here
574%
575% When a function has multiple optional parameters, \optional should be
576% nested, not chained. This is right:
577%
578% \begin{funcdesc}{myfunc}{\optional{parm1\optional{, parm2}}}
579%
Fred Drakeba828782000-04-03 04:19:14 +0000580\let\py@badkey=\@undefined
581
Fred Drake6659c301998-03-03 22:02:19 +0000582\newcommand{\optional}[1]{%
583 {\textnormal{\Large[}}{#1}\hspace{0.5mm}{\textnormal{\Large]}}}
584
Fred Drakeba828782000-04-03 04:19:14 +0000585% This can be used when a function or method accepts an varying number
586% of arguments, such as by using the *args syntax in the parameter list.
587\newcommand{\py@moreargs}{...}
588
589% This can be used when you don't want to document the parameters to a
590% function or method, but simply state that it's an alias for
591% something else.
592\newcommand{\py@unspecified}{...}
593
Fred Drakead74b7d2002-07-02 20:32:50 +0000594
595\newlength{\py@argswidth}
596\newcommand{\py@sigparams}[1]{%
597 \parbox[t]{\py@argswidth}{\py@varvars{#1}\code{)}}}
598\newcommand{\py@sigline}[2]{%
599 \settowidth{\py@argswidth}{#1\code{(}}%
600 \addtolength{\py@argswidth}{-2\py@argswidth}%
601 \addtolength{\py@argswidth}{\textwidth}%
602 \item[#1\code{(}\py@sigparams{#2}]}
603
Fred Drake6cb71491998-03-27 05:22:53 +0000604% C functions ------------------------------------------------------------
Fred Drakeba828782000-04-03 04:19:14 +0000605% \begin{cfuncdesc}[refcount]{type}{name}{arglist}
606% Note that the [refcount] slot should only be filled in by
607% tools/anno-api.py; it pulls the value from the refcounts database.
Fred Drake34adb8a2002-04-15 20:48:40 +0000608\newcommand{\cfuncline}[3]{
Fred Drakead74b7d2002-07-02 20:32:50 +0000609 \py@sigline{\code{#1 \bfcode{#2}}}{#3}%
610 \index{#2@{\py@idxcode{#2()}}}
Fred Drake34adb8a2002-04-15 20:48:40 +0000611}
Fred Drakeba828782000-04-03 04:19:14 +0000612\newenvironment{cfuncdesc}[4][\py@badkey]{
Fred Drake6cb71491998-03-27 05:22:53 +0000613 \begin{fulllineitems}
Fred Drake34adb8a2002-04-15 20:48:40 +0000614 \cfuncline{#2}{#3}{#4}
Fred Drakeba828782000-04-03 04:19:14 +0000615 \ifx#1\@undefined\else%
Fred Drake0a863da2000-04-10 18:21:38 +0000616 \emph{Return value: \textbf{#1}.}\\
Fred Drakeba828782000-04-03 04:19:14 +0000617 \fi
Fred Drake6cb71491998-03-27 05:22:53 +0000618}{\end{fulllineitems}}
619
620% C variables ------------------------------------------------------------
621% \begin{cvardesc}{type}{name}
622\newenvironment{cvardesc}[2]{
623 \begin{fulllineitems}
Fred Drake24340ea1998-04-28 18:30:34 +0000624 \item[\code{#1 \bfcode{#2}}\index{#2@{\py@idxcode{#2}}}]
Fred Drake6cb71491998-03-27 05:22:53 +0000625}{\end{fulllineitems}}
626
627% C data types -----------------------------------------------------------
Fred Drakeba828782000-04-03 04:19:14 +0000628% \begin{ctypedesc}[index name]{typedef name}
629\newenvironment{ctypedesc}[2][\py@badkey]{
Fred Drake6cb71491998-03-27 05:22:53 +0000630 \begin{fulllineitems}
Fred Drakeba828782000-04-03 04:19:14 +0000631 \item[\bfcode{#2}%
632 \ifx#1\@undefined%
Fred Drakea33c5662000-10-29 05:19:16 +0000633 \index{#2@{\py@idxcode{#2}} (C type)}
Fred Drakeba828782000-04-03 04:19:14 +0000634 \else%
Fred Drakea33c5662000-10-29 05:19:16 +0000635 \index{#2@{\py@idxcode{#1}} (C type)}
Fred Drakeba828782000-04-03 04:19:14 +0000636 \fi]
637}{\end{fulllineitems}}
638
Fred Drake01e94612002-04-12 22:48:02 +0000639% C type fields ----------------------------------------------------------
640% \begin{cmemberdesc}{container type}{ctype}{membername}
641\newcommand{\cmemberline}[3]{
642 \item[\code{#2 \bfcode{#3}}]
643 \index{#3@{\py@idxcode{#3}} (#1 member)}
644}
645\newenvironment{cmemberdesc}[3]{
646 \begin{fulllineitems}
647 \cmemberline{#1}{#2}{#3}
648}{\end{fulllineitems}}
649
Fred Drakeba828782000-04-03 04:19:14 +0000650% Funky macros -----------------------------------------------------------
Fred Drake19f827e2002-04-09 20:16:47 +0000651% \begin{csimplemacrodesc}{name}
Fred Drakeba828782000-04-03 04:19:14 +0000652% -- "simple" because it has no args; NOT for constant definitions!
653\newenvironment{csimplemacrodesc}[1]{
654 \begin{fulllineitems}
Fred Drakea33c5662000-10-29 05:19:16 +0000655 \item[\bfcode{#1}\index{#1@{\py@idxcode{#1}} (macro)}]
Fred Drake6cb71491998-03-27 05:22:53 +0000656}{\end{fulllineitems}}
657
658% simple functions (not methods) -----------------------------------------
659% \begin{funcdesc}{name}{args}
Fred Drakeec77e652000-10-30 06:22:22 +0000660\newcommand{\funcline}[2]{%
661 \funclineni{#1}{#2}%
662 \index{#1@{\py@idxcode{#1()}} (in module \py@thismodule)}}
Fred Drake6cb71491998-03-27 05:22:53 +0000663\newenvironment{funcdesc}[2]{
664 \begin{fulllineitems}
665 \funcline{#1}{#2}
666}{\end{fulllineitems}}
667
Fred Drake6659c301998-03-03 22:02:19 +0000668% similar to {funcdesc}, but doesn't add to the index
Fred Drakead74b7d2002-07-02 20:32:50 +0000669\newcommand{\funclineni}[2]{%
670 \py@sigline{\bfcode{#1}}{#2}}
Fred Drake6cb71491998-03-27 05:22:53 +0000671\newenvironment{funcdescni}[2]{
672 \begin{fulllineitems}
673 \funclineni{#1}{#2}
Fred Drake6659c301998-03-03 22:02:19 +0000674}{\end{fulllineitems}}
675
Fred Drake6cb71491998-03-27 05:22:53 +0000676% classes ----------------------------------------------------------------
677% \begin{classdesc}{name}{constructor args}
678\newenvironment{classdesc}[2]{
Fred Drake1cbd1961998-11-25 17:13:28 +0000679 % Using \renewcommand doesn't work for this, for unknown reasons:
680 \global\def\py@thisclass{#1}
Fred Drake6cb71491998-03-27 05:22:53 +0000681 \begin{fulllineitems}
Fred Drakead74b7d2002-07-02 20:32:50 +0000682 \py@sigline{\strong{class }\bfcode{#1}}{#2}%
683 \index{#1@{\py@idxcode{#1}} (class in \py@thismodule)}
Fred Drake6659c301998-03-03 22:02:19 +0000684}{\end{fulllineitems}}
685
Fred Drake06a01e82001-05-11 01:00:30 +0000686% \begin{classdesc*}{name}
687\newenvironment{classdesc*}[1]{
688 % Using \renewcommand doesn't work for this, for unknown reasons:
689 \global\def\py@thisclass{#1}
690 \begin{fulllineitems}
691 \item[\strong{class }\code{\bfcode{#1}}%
692 \index{#1@{\py@idxcode{#1}} (class in \py@thismodule)}]
693}{\end{fulllineitems}}
694
Fred Drake4e607962000-09-09 06:01:25 +0000695% \begin{excclassdesc}{name}{constructor args}
696% but indexes as an exception
697\newenvironment{excclassdesc}[2]{
698 % Using \renewcommand doesn't work for this, for unknown reasons:
699 \global\def\py@thisclass{#1}
700 \begin{fulllineitems}
Fred Drakead74b7d2002-07-02 20:32:50 +0000701 \py@sigline{\strong{exception }\bfcode{#1}}{#2}%
702 \index{#1@{\py@idxcode{#1}} (exception in \py@thismodule)}
Fred Drake4e607962000-09-09 06:01:25 +0000703}{\end{fulllineitems}}
704
Fred Drake06a01e82001-05-11 01:00:30 +0000705% There is no corresponding {excclassdesc*} environment. To describe
706% a class exception without parameters, use the {excdesc} environment.
707
Fred Drake6cb71491998-03-27 05:22:53 +0000708
Fred Drake24340ea1998-04-28 18:30:34 +0000709\let\py@classbadkey=\@undefined
Fred Drake6cb71491998-03-27 05:22:53 +0000710
711% object method ----------------------------------------------------------
712% \begin{methoddesc}[classname]{methodname}{args}
Fred Drakea33c5662000-10-29 05:19:16 +0000713\newcommand{\methodline}[3][\@undefined]{
Fred Drake6cb71491998-03-27 05:22:53 +0000714 \methodlineni{#2}{#3}
715 \ifx#1\@undefined
Fred Drakea33c5662000-10-29 05:19:16 +0000716 \index{#2@{\py@idxcode{#2()}} (\py@thisclass\ method)}
Fred Drake6cb71491998-03-27 05:22:53 +0000717 \else
Fred Drakea33c5662000-10-29 05:19:16 +0000718 \index{#2@{\py@idxcode{#2()}} (#1 method)}
Fred Drake6cb71491998-03-27 05:22:53 +0000719 \fi
720}
Fred Drakea33c5662000-10-29 05:19:16 +0000721\newenvironment{methoddesc}[3][\@undefined]{
Fred Drake6cb71491998-03-27 05:22:53 +0000722 \begin{fulllineitems}
723 \ifx#1\@undefined
724 \methodline{#2}{#3}
725 \else
Fred Drake24340ea1998-04-28 18:30:34 +0000726 \def\py@thisclass{#1}
Fred Drakea33c5662000-10-29 05:19:16 +0000727 \methodline{#2}{#3}
Fred Drake6cb71491998-03-27 05:22:53 +0000728 \fi
Fred Drake6659c301998-03-03 22:02:19 +0000729}{\end{fulllineitems}}
730
Fred Drake6cb71491998-03-27 05:22:53 +0000731% similar to {methoddesc}, but doesn't add to the index
732% (never actually uses the optional argument)
Fred Drake24340ea1998-04-28 18:30:34 +0000733\newcommand{\methodlineni}[3][\py@classbadkey]{%
Fred Drakead74b7d2002-07-02 20:32:50 +0000734 \py@sigline{\bfcode{#2}}{#3}}
Fred Drake24340ea1998-04-28 18:30:34 +0000735\newenvironment{methoddescni}[3][\py@classbadkey]{
Fred Drake6cb71491998-03-27 05:22:53 +0000736 \begin{fulllineitems}
737 \methodlineni{#2}{#3}
738}{\end{fulllineitems}}
739
740% object data attribute --------------------------------------------------
741% \begin{memberdesc}[classname]{membername}
Fred Drake24340ea1998-04-28 18:30:34 +0000742\newcommand{\memberline}[2][\py@classbadkey]{%
Fred Drake6cb71491998-03-27 05:22:53 +0000743 \ifx#1\@undefined
744 \memberlineni{#2}
Fred Drakea33c5662000-10-29 05:19:16 +0000745 \index{#2@{\py@idxcode{#2}} (\py@thisclass\ attribute)}
Fred Drake6cb71491998-03-27 05:22:53 +0000746 \else
747 \memberlineni{#2}
Fred Drakea33c5662000-10-29 05:19:16 +0000748 \index{#2@{\py@idxcode{#2}} (#1 attribute)}
Fred Drake6cb71491998-03-27 05:22:53 +0000749 \fi
750}
Fred Drake24340ea1998-04-28 18:30:34 +0000751\newenvironment{memberdesc}[2][\py@classbadkey]{
Fred Drake6cb71491998-03-27 05:22:53 +0000752 \begin{fulllineitems}
753 \ifx#1\@undefined
754 \memberline{#2}
755 \else
Fred Drake24340ea1998-04-28 18:30:34 +0000756 \def\py@thisclass{#1}
Fred Drakea33c5662000-10-29 05:19:16 +0000757 \memberline{#2}
Fred Drake6cb71491998-03-27 05:22:53 +0000758 \fi
759}{\end{fulllineitems}}
760
761% similar to {memberdesc}, but doesn't add to the index
762% (never actually uses the optional argument)
Fred Drake24340ea1998-04-28 18:30:34 +0000763\newcommand{\memberlineni}[2][\py@classbadkey]{\item[\bfcode{#2}]}
764\newenvironment{memberdescni}[2][\py@classbadkey]{
Fred Drake6cb71491998-03-27 05:22:53 +0000765 \begin{fulllineitems}
766 \memberlineni{#2}
767}{\end{fulllineitems}}
768
769% For exceptions: --------------------------------------------------------
770% \begin{excdesc}{name}
Fred Drakea33c5662000-10-29 05:19:16 +0000771% -- for constructor information, use excclassdesc instead
Fred Drake6cb71491998-03-27 05:22:53 +0000772\newenvironment{excdesc}[1]{
773 \begin{fulllineitems}
Fred Drakeab357ec2001-03-02 18:57:05 +0000774 \item[\strong{exception }\bfcode{#1}%
Fred Drakea33c5662000-10-29 05:19:16 +0000775 \index{#1@{\py@idxcode{#1}} (exception in \py@thismodule)}]
Fred Drake6cb71491998-03-27 05:22:53 +0000776}{\end{fulllineitems}}
777
778% Module data or constants: ----------------------------------------------
779% \begin{datadesc}{name}
Fred Drakea33c5662000-10-29 05:19:16 +0000780\newcommand{\dataline}[1]{%
781 \datalineni{#1}\index{#1@{\py@idxcode{#1}} (data in \py@thismodule)}}
Fred Drake6cb71491998-03-27 05:22:53 +0000782\newenvironment{datadesc}[1]{
783 \begin{fulllineitems}
784 \dataline{#1}
Fred Drake6659c301998-03-03 22:02:19 +0000785}{\end{fulllineitems}}
786
787% similar to {datadesc}, but doesn't add to the index
Fred Drake6cb71491998-03-27 05:22:53 +0000788\newcommand{\datalineni}[1]{\item[\bfcode{#1}]\nopagebreak}
789\newenvironment{datadescni}[1]{
790 \begin{fulllineitems}
791 \datalineni{#1}
Fred Drake6659c301998-03-03 22:02:19 +0000792}{\end{fulllineitems}}
793
Fred Drake6cb71491998-03-27 05:22:53 +0000794% bytecode instruction ---------------------------------------------------
795% \begin{opcodedesc}{name}{var}
796% -- {var} may be {}
797\newenvironment{opcodedesc}[2]{
798 \begin{fulllineitems}
799 \item[\bfcode{#1}\quad\var{#2}]
Fred Drake6659c301998-03-03 22:02:19 +0000800}{\end{fulllineitems}}
801
802
Fred Drake24340ea1998-04-28 18:30:34 +0000803\newcommand{\nodename}[1]{\label{#1}}
Fred Drake55730311998-03-25 15:41:23 +0000804
Fred Drake6659c301998-03-03 22:02:19 +0000805% For these commands, use \command{} to get the typography right, not
806% {\command}. This works better with the texinfo translation.
807\newcommand{\ABC}{{\sc abc}}
808\newcommand{\UNIX}{{\sc Unix}}
809\newcommand{\POSIX}{POSIX}
810\newcommand{\ASCII}{{\sc ascii}}
811\newcommand{\Cpp}{C\protect\raisebox{.18ex}{++}}
812\newcommand{\C}{C}
813\newcommand{\EOF}{{\sc eof}}
Fred Drake24340ea1998-04-28 18:30:34 +0000814\newcommand{\NULL}{\constant{NULL}}
Fred Drake5445e5e2001-06-23 03:11:45 +0000815\newcommand{\infinity}{\ensuremath{\infty}}
816\newcommand{\plusminus}{\ensuremath{\pm}}
Fred Drakef0f6d122004-01-23 08:52:28 +0000817
818% \guilabel{Start}
819\newcommand{\guilabel}[1]{\textsf{#1}}
Fred Drakeb4812862002-08-02 18:30:22 +0000820% \menuselection{Start \sub Programs \sub Python}
Fred Drakef0f6d122004-01-23 08:52:28 +0000821\newcommand{\menuselection}[1]{\guilabel{{\def\sub{ \ensuremath{>} }#1}}}
Fred Drake6659c301998-03-03 22:02:19 +0000822
Fred Drake53714971998-04-02 22:33:16 +0000823% Also for consistency: spell Python "Python", not "python"!
824
Fred Drake6659c301998-03-03 22:02:19 +0000825% code is the most difficult one...
Fred Drake46346ec2000-06-30 17:57:05 +0000826\newcommand{\code}[1]{\textrm{\@vobeyspaces\@noligs\def\{{\char`\{}\def\}{\char`\}}\def\~{\char`\~}\def\^{\char`\^}\def\e{\char`\\}\def\${\char`\$}\def\#{\char`\#}\def\&{\char`\&}\def\%{\char`\%}%
Fred Drake24340ea1998-04-28 18:30:34 +0000827\texttt{#1}}}
Fred Drake6659c301998-03-03 22:02:19 +0000828
829\newcommand{\bfcode}[1]{\code{\bfseries#1}} % bold-faced code font
Fred Drake19f827e2002-04-09 20:16:47 +0000830\newcommand{\csimplemacro}[1]{\code{#1}}
Fred Drake8e54abe1998-07-01 14:49:25 +0000831\newcommand{\kbd}[1]{\code{#1}}
Fred Drake24340ea1998-04-28 18:30:34 +0000832\newcommand{\samp}[1]{`\code{#1}'}
Fred Drakefa1cceb1998-11-30 14:42:59 +0000833\newcommand{\var}[1]{%
834 \ifmmode%
Fred Drakeff031cf2002-10-31 21:04:34 +0000835 \hbox{\py@defaultsize\textrm{\textit{#1\/}}}%
Fred Drakefa1cceb1998-11-30 14:42:59 +0000836 \else%
Fred Drakeff031cf2002-10-31 21:04:34 +0000837 \py@defaultsize\textrm{\textit{#1\/}}%
Fred Drakefa1cceb1998-11-30 14:42:59 +0000838 \fi%
839}
Fred Drake24340ea1998-04-28 18:30:34 +0000840\renewcommand{\emph}[1]{{\em #1}}
Fred Drake6659c301998-03-03 22:02:19 +0000841\newcommand{\dfn}[1]{\emph{#1}}
842\newcommand{\strong}[1]{{\bf #1}}
843% let's experiment with a new font:
Fred Drakeff031cf2002-10-31 21:04:34 +0000844\newcommand{\file}[1]{`\filenq{#1}'}
Fred Drake52feb812004-02-09 20:58:08 +0000845\newcommand{\filenq}[1]{{\py@smallsize\textsf{\let\e=\textbackslash#1}}}
Fred Drake6659c301998-03-03 22:02:19 +0000846
847% Use this def/redef approach for \url{} since hyperref defined this already,
848% but only if we actually used hyperref:
Fred Drakee59feb52001-10-29 21:02:28 +0000849\ifpdf
850 \newcommand{\url}[1]{{%
Thomas Wouters477c8d52006-05-27 19:21:47 +0000851 \py@pdfstartlink%
852 attr{ /Border [0 0 0] }%
853 user{%
854 /Subtype/Link%
855 /A<<%
856 /Type/Action%
857 /S/URI%
858 /URI(#1)%
859 >>%
860 }%
861 \py@LinkColor% color of the link text
Fred Drakeff031cf2002-10-31 21:04:34 +0000862 \py@smallsize\sf #1%
Fred Drakeab357ec2001-03-02 18:57:05 +0000863 \py@NormalColor% Turn it back off; these are declarative
864 \pdfendlink}% and don't appear bound to the current
865 }% formatting "box".
Fred Drakee59feb52001-10-29 21:02:28 +0000866\else
Fred Drakeff031cf2002-10-31 21:04:34 +0000867 \newcommand{\url}[1]{\mbox{\py@smallsize\textsf{#1}}}
Fred Drakee59feb52001-10-29 21:02:28 +0000868\fi
Fred Drakeff031cf2002-10-31 21:04:34 +0000869\newcommand{\email}[1]{{\py@smallsize\textsf{#1}}}
870\newcommand{\newsgroup}[1]{{\py@smallsize\textsf{#1}}}
Fred Drake6659c301998-03-03 22:02:19 +0000871
Fred Drakecc2b81e2000-08-03 17:38:30 +0000872\newcommand{\py@varvars}[1]{{%
Fred Drakeba828782000-04-03 04:19:14 +0000873 {\let\unspecified=\py@unspecified%
874 \let\moreargs=\py@moreargs%
Fred Drakecc2b81e2000-08-03 17:38:30 +0000875 \var{#1}}}}
Fred Drake6659c301998-03-03 22:02:19 +0000876
Fred Drake24340ea1998-04-28 18:30:34 +0000877% I'd really like to get rid of this!
Fred Drake6659c301998-03-03 22:02:19 +0000878\newif\iftexi\texifalse
Fred Drake6659c301998-03-03 22:02:19 +0000879
Fred Drake1e4973b1998-07-28 21:52:17 +0000880% This is used to get l2h to put the copyright and abstract on
881% a separate HTML page.
882\newif\ifhtml\htmlfalse
883
884
Fred Drake6659c301998-03-03 22:02:19 +0000885% These should be used for all references to identifiers which are
886% used to refer to instances of specific language constructs. See the
887% names for specific semantic assignments.
888%
889% For now, don't do anything really fancy with them; just use them as
890% logical markup. This might change in the future.
891%
Fred Drake24340ea1998-04-28 18:30:34 +0000892\newcommand{\module}[1]{\texttt{#1}}
893\newcommand{\keyword}[1]{\texttt{#1}}
894\newcommand{\exception}[1]{\texttt{#1}}
895\newcommand{\class}[1]{\texttt{#1}}
896\newcommand{\function}[1]{\texttt{#1}}
897\newcommand{\member}[1]{\texttt{#1}}
898\newcommand{\method}[1]{\texttt{#1}}
Fred Drake6659c301998-03-03 22:02:19 +0000899
Fred Drakeab357ec2001-03-02 18:57:05 +0000900\newcommand{\pytype}[1]{#1} % built-in Python type
Fred Drake53714971998-04-02 22:33:16 +0000901
Fred Drake24340ea1998-04-28 18:30:34 +0000902\newcommand{\cfunction}[1]{\texttt{#1}}
Fred Drakeab357ec2001-03-02 18:57:05 +0000903\newcommand{\ctype}[1]{\texttt{#1}} % C struct or typedef name
904\newcommand{\cdata}[1]{\texttt{#1}} % C variable, typically global
Fred Drake6659c301998-03-03 22:02:19 +0000905
Fred Drakeff031cf2002-10-31 21:04:34 +0000906\newcommand{\mailheader}[1]{{\py@smallsize\textsf{#1:}}}
907\newcommand{\mimetype}[1]{{\py@smallsize\textsf{#1}}}
Fred Drake94fac131998-03-12 19:37:03 +0000908% The \! is a "negative thin space" in math mode.
909\newcommand{\regexp}[1]{%
910 {\tiny$^{^\lceil}\!\!$%
Fred Drakeff031cf2002-10-31 21:04:34 +0000911 {\py@defaultsize\code{#1}}%
Fred Drake47cfd031998-04-03 21:22:31 +0000912 $\!\rfloor\!$%
Fred Drake94fac131998-03-12 19:37:03 +0000913 }}
Fred Drake0ee9f721998-03-12 06:41:40 +0000914\newcommand{\envvar}[1]{%
Fred Drake31ab2982001-01-22 17:50:42 +0000915 #1%
Fred Drakee59feb52001-10-29 21:02:28 +0000916 \index{#1}%
Fred Drake31ab2982001-01-22 17:50:42 +0000917 \index{environment variables!{#1}}%
Fred Drake0ee9f721998-03-12 06:41:40 +0000918}
Fred Drakeab357ec2001-03-02 18:57:05 +0000919\newcommand{\makevar}[1]{#1} % variable in a Makefile
Fred Drake24340ea1998-04-28 18:30:34 +0000920\newcommand{\character}[1]{\samp{#1}}
Fred Drake0ee9f721998-03-12 06:41:40 +0000921
Fred Drake6659c301998-03-03 22:02:19 +0000922% constants defined in Python modules or C headers, not language constants:
Fred Drakeab357ec2001-03-02 18:57:05 +0000923\newcommand{\constant}[1]{\code{#1}} % manifest constant, not syntactic
Fred Drake6659c301998-03-03 22:02:19 +0000924
925\newcommand{\manpage}[2]{{\emph{#1}(#2)}}
Fred Drake4e607962000-09-09 06:01:25 +0000926\newcommand{\pep}[1]{PEP #1\index{Python Enhancement Proposals!PEP #1}}
Fred Drake6659c301998-03-03 22:02:19 +0000927\newcommand{\rfc}[1]{RFC #1\index{RFC!RFC #1}}
928\newcommand{\program}[1]{\strong{#1}}
Fred Drake7b8195a1999-11-09 17:02:11 +0000929\newcommand{\programopt}[1]{\strong{#1}}
Fred Drake49362492000-04-11 18:47:59 +0000930% Note that \longprogramopt provides the '--'!
931\newcommand{\longprogramopt}[1]{\strong{-{}-#1}}
Fred Drakee59feb52001-10-29 21:02:28 +0000932
Fred Drakeb4b64da2001-07-06 22:44:48 +0000933% \ulink{link text}{URL}
Fred Drakee59feb52001-10-29 21:02:28 +0000934\ifpdf
Fred Drakecdd6e4d2004-12-01 06:30:31 +0000935 \newcommand{\ulink}[2]{{%
936 % For PDF, we *should* only generate a link when the URL is absolute.
Thomas Wouters477c8d52006-05-27 19:21:47 +0000937 \py@pdfstartlink%
938 attr{ /Border [0 0 0] }%
939 user{%
940 /Subtype/Link%
941 /A<<%
942 /Type/Action%
943 /S/URI%
944 /URI(#2)%
945 >>%
946 }%
Fred Drakee59feb52001-10-29 21:02:28 +0000947 \py@LinkColor% color of the link text
948 #1%
949 \py@NormalColor% Turn it back off; these are declarative
950 \pdfendlink}% and don't appear bound to the current
951 }% formatting "box".
952\else
953 \newcommand{\ulink}[2]{#1}
954\fi
Fred Drake7b8195a1999-11-09 17:02:11 +0000955
956% cited titles: \citetitle{Title of Work}
957% online: \citetitle[url-to-resource]{Title of Work}
Fred Drakee59feb52001-10-29 21:02:28 +0000958\ifpdf
959 \newcommand{\citetitle}[2][\py@modulebadkey]{%
960 \ifx\py@modulebadkey#1\emph{#2}\else\ulink{\emph{#2}}{#1}\fi%
961 }
962\else
Fred Drake622087a2001-11-02 20:53:19 +0000963 \newcommand{\citetitle}[2][URL]{\emph{#2}}
Fred Drakee59feb52001-10-29 21:02:28 +0000964\fi
965
Fred Drake6659c301998-03-03 22:02:19 +0000966
967
Fred Drakec82bd722001-12-11 18:47:36 +0000968% This version is being checked in for the historical record; it shows
969% how I've managed to get some aspects of this to work. It will not
970% be used in practice, so a subsequent revision will change things
971% again. This version has problems, but shows how to do something
972% that proved more tedious than I'd expected, so I don't want to lose
973% the example completely.
974%
Fred Drake16bb4192001-08-20 21:36:38 +0000975\newcommand{\grammartoken}[1]{\texttt{#1}}
Fred Drakeb4b64da2001-07-06 22:44:48 +0000976\newenvironment{productionlist}[1][\py@badkey]{
977 \def\optional##1{{\Large[}##1{\Large]}}
978 \def\production##1##2{\code{##1}&::=&\code{##2}\\}
Fred Drake53815882002-03-15 23:21:37 +0000979 \def\productioncont##1{& &\code{##1}\\}
Fred Drakeb4b64da2001-07-06 22:44:48 +0000980 \def\token##1{##1}
Fred Drake16bb4192001-08-20 21:36:38 +0000981 \let\grammartoken=\token
Fred Drakec82bd722001-12-11 18:47:36 +0000982 \parindent=2em
983 \indent
984 \begin{tabular}{lcl}
Fred Drakeb4b64da2001-07-06 22:44:48 +0000985}{%
Fred Drakec82bd722001-12-11 18:47:36 +0000986 \end{tabular}
Fred Drakeb4b64da2001-07-06 22:44:48 +0000987}
988
Fred Drake862b46b2004-03-31 08:08:34 +0000989\newlength{\py@noticelength}
990
991\newcommand{\py@heavybox}{
992 \setlength{\fboxrule}{2pt}
993 \setlength{\fboxsep}{7pt}
994 \setlength{\py@noticelength}{\linewidth}
995 \addtolength{\py@noticelength}{-2\fboxsep}
996 \addtolength{\py@noticelength}{-2\fboxrule}
997 \setlength{\shadowsize}{3pt}
998 \Sbox
999 \minipage{\py@noticelength}
1000}
1001\newcommand{\py@endheavybox}{
1002 \endminipage
1003 \endSbox
1004 \fbox{\TheSbox}
1005}
1006
1007% a 'note' is as plain as it gets:
Fred Drake6ca33772001-12-14 22:50:06 +00001008\newcommand{\py@noticelabel@note}{Note:}
Fred Drake862b46b2004-03-31 08:08:34 +00001009\newcommand{\py@noticestart@note}{}
1010\newcommand{\py@noticeend@note}{}
1011
1012% a 'warning' gets more visible distinction:
Fred Drake6ca33772001-12-14 22:50:06 +00001013\newcommand{\py@noticelabel@warning}{Warning:}
Fred Drake862b46b2004-03-31 08:08:34 +00001014\newcommand{\py@noticestart@warning}{\py@heavybox}
1015\newcommand{\py@noticeend@warning}{\py@endheavybox}
1016
Fred Drake6ca33772001-12-14 22:50:06 +00001017\newenvironment{notice}[1][note]{
Fred Drake862b46b2004-03-31 08:08:34 +00001018 \def\py@noticetype{#1}
1019 \csname py@noticestart@#1\endcsname
Fred Drake6ca33772001-12-14 22:50:06 +00001020 \par\strong{\csname py@noticelabel@#1\endcsname}
Fred Drake862b46b2004-03-31 08:08:34 +00001021}{\csname py@noticeend@\py@noticetype\endcsname}
Fred Drake6ca33772001-12-14 22:50:06 +00001022\newcommand{\note}[1]{\strong{\py@noticelabel@note} #1}
1023\newcommand{\warning}[1]{\strong{\py@noticelabel@warning} #1}
Fred Drake92350b32001-10-09 18:01:23 +00001024
Fred Drake6659c301998-03-03 22:02:19 +00001025% Deprecation stuff.
1026% Should be extended to allow an index / list of deprecated stuff. But
1027% there's a lot of stuff that needs to be done to make that automatable.
1028%
1029% First parameter is the release number that deprecates the feature, the
1030% second is the action the should be taken by users of the feature.
1031%
1032% Example:
Fred Drake24340ea1998-04-28 18:30:34 +00001033% \deprecated{1.5.1}{Use \method{frobnicate()} instead.}
Fred Drake6659c301998-03-03 22:02:19 +00001034%
1035\newcommand{\deprecated}[2]{%
1036 \strong{Deprecated since release #1.} #2\par}
1037
Fred Drakeaf958c71998-07-27 20:32:33 +00001038% New stuff.
1039% This should be used to mark things which have been added to the
1040% development tree but that aren't in the release, but are documented.
1041% This allows release of documentation that already includes updated
Fred Drake2116d981999-02-02 18:02:48 +00001042% descriptions. Place at end of descriptor environment.
Fred Drakeaf958c71998-07-27 20:32:33 +00001043%
1044% Example:
1045% \versionadded{1.5.2}
Fred Drake46346ec2000-06-30 17:57:05 +00001046% \versionchanged[short explanation]{2.0}
Fred Drakeaf958c71998-07-27 20:32:33 +00001047%
Fred Drakefdfb05b2001-04-18 03:08:54 +00001048\newcommand{\versionadded}[2][\py@badkey]{%
1049 \ifx#1\@undefined%
1050 { New in version #2. }%
1051 \else%
1052 { New in version #2:\ #1. }%
1053 \fi%
1054}
Fred Drakea6e83392000-05-02 17:28:36 +00001055\newcommand{\versionchanged}[2][\py@badkey]{%
1056 \ifx#1\@undefined%
1057 { Changed in version #2. }%
1058 \else%
1059 { Changed in version #2:\ #1. }%
1060 \fi%
1061}
Fred Drake6659c301998-03-03 22:02:19 +00001062
Fred Drakeaf958c71998-07-27 20:32:33 +00001063
1064% Tables.
1065%
Fred Drake6659c301998-03-03 22:02:19 +00001066\newenvironment{tableii}[4]{%
1067 \begin{center}%
1068 \def\lineii##1##2{\csname#2\endcsname{##1}&##2\\}%
Fred Drakef61eac42000-10-24 02:18:30 +00001069 \begin{tabular}{#1}\strong{#3}&\strong{#4} \\* \hline%
Fred Drake6659c301998-03-03 22:02:19 +00001070}{%
Fred Drake6659c301998-03-03 22:02:19 +00001071 \end{tabular}%
1072 \end{center}%
1073}
1074
Fred Drakeda72b932000-09-21 15:58:02 +00001075\newenvironment{longtableii}[4]{%
1076 \begin{center}%
1077 \def\lineii##1##2{\csname#2\endcsname{##1}&##2\\}%
Fred Drakef61eac42000-10-24 02:18:30 +00001078 \begin{longtable}[c]{#1}\strong{#3}&\strong{#4} \\* \hline\endhead%
Fred Drakeda72b932000-09-21 15:58:02 +00001079}{%
1080 \end{longtable}%
1081 \end{center}%
1082}
1083
Fred Drake6659c301998-03-03 22:02:19 +00001084\newenvironment{tableiii}[5]{%
1085 \begin{center}%
1086 \def\lineiii##1##2##3{\csname#2\endcsname{##1}&##2&##3\\}%
Fred Drakeda72b932000-09-21 15:58:02 +00001087 \begin{tabular}{#1}\strong{#3}&\strong{#4}&\strong{#5} \\%
Fred Drakef61eac42000-10-24 02:18:30 +00001088 \hline%
Fred Drake6659c301998-03-03 22:02:19 +00001089}{%
Fred Drake6659c301998-03-03 22:02:19 +00001090 \end{tabular}%
1091 \end{center}%
1092}
1093
Fred Drakeda72b932000-09-21 15:58:02 +00001094\newenvironment{longtableiii}[5]{%
1095 \begin{center}%
1096 \def\lineiii##1##2##3{\csname#2\endcsname{##1}&##2&##3\\}%
1097 \begin{longtable}[c]{#1}\strong{#3}&\strong{#4}&\strong{#5} \\%
Fred Drakef61eac42000-10-24 02:18:30 +00001098 \hline\endhead%
Fred Drakeda72b932000-09-21 15:58:02 +00001099}{%
1100 \end{longtable}%
1101 \end{center}%
1102}
1103
Fred Drake30e52651998-07-24 22:11:29 +00001104\newenvironment{tableiv}[6]{%
1105 \begin{center}%
1106 \def\lineiv##1##2##3##4{\csname#2\endcsname{##1}&##2&##3&##4\\}%
1107 \begin{tabular}{#1}\strong{#3}&\strong{#4}&\strong{#5}&\strong{#6} \\%
Fred Drakef61eac42000-10-24 02:18:30 +00001108 \hline%
Fred Drake30e52651998-07-24 22:11:29 +00001109}{%
1110 \end{tabular}%
1111 \end{center}%
1112}
1113
Fred Drakeda72b932000-09-21 15:58:02 +00001114\newenvironment{longtableiv}[6]{%
1115 \begin{center}%
1116 \def\lineiv##1##2##3##4{\csname#2\endcsname{##1}&##2&##3&##4\\}%
1117 \begin{longtable}[c]{#1}\strong{#3}&\strong{#4}&\strong{#5}&\strong{#6}%
1118 \\%
Fred Drakef61eac42000-10-24 02:18:30 +00001119 \hline\endhead%
Fred Drakeda72b932000-09-21 15:58:02 +00001120}{%
1121 \end{longtable}%
1122 \end{center}%
1123}
1124
Fred Drakef269e592001-07-17 23:05:57 +00001125\newenvironment{tablev}[7]{%
1126 \begin{center}%
1127 \def\linev##1##2##3##4##5{\csname#2\endcsname{##1}&##2&##3&##4&##5\\}%
1128 \begin{tabular}{#1}\strong{#3}&\strong{#4}&\strong{#5}&\strong{#6}&\strong{#7} \\%
1129 \hline%
1130}{%
1131 \end{tabular}%
1132 \end{center}%
1133}
1134
1135\newenvironment{longtablev}[7]{%
1136 \begin{center}%
1137 \def\linev##1##2##3##4##5{\csname#2\endcsname{##1}&##2&##3&##4&##5\\}%
1138 \begin{longtable}[c]{#1}\strong{#3}&\strong{#4}&\strong{#5}&\strong{#6}&\strong{#7}%
1139 \\%
1140 \hline\endhead%
1141}{%
1142 \end{longtable}%
1143 \end{center}%
1144}
1145
Fred Drake567332a2002-12-30 20:51:27 +00001146% XXX Don't think we can use this yet, though it cleans up some
1147% tedious markup. There's no equivalent for the HTML transform yet,
1148% and that needs to exist. I don't know how to write it.
1149%
1150% This should really have something that makes it easier to bind a
1151% table's ``Notes'' column and an associated tablenotes environment,
1152% and generates the right magic for getting the numbers right in the
1153% table.
1154%
1155% So this is quite incomplete.
1156%
1157\newcounter{py@tablenotescounter}
1158\newenvironment{tablenotes}{%
1159 \noindent Notes:
1160 \par
1161 \setcounter{py@tablenotescounter}{0}
1162 \begin{list}{(\arabic{py@tablenotescounter})}%
1163 {\usecounter{py@tablenotescounter}}
1164}{\end{list}}
1165
1166
Fred Drake24340ea1998-04-28 18:30:34 +00001167% Cross-referencing (AMK, new impl. FLD)
Fred Drake6659c301998-03-03 22:02:19 +00001168% Sample usage:
1169% \begin{seealso}
Fred Drake84bd6f31999-05-11 15:42:51 +00001170% \seemodule{rand}{Uniform random number generator.}; % Module xref
1171% \seetext{\emph{Encyclopedia Britannica}}. % Ref to a book
Fred Drakeebcb6581998-03-06 21:25:17 +00001172%
1173% % A funky case: module name contains '_'; have to supply an optional key
Fred Drake84bd6f31999-05-11 15:42:51 +00001174% \seemodule[copyreg]{copy_reg}{Interface constructor registration for
1175% \module{pickle}.}
Fred Drake6659c301998-03-03 22:02:19 +00001176% \end{seealso}
Fred Drake84bd6f31999-05-11 15:42:51 +00001177%
1178% Note that the last parameter for \seemodule and \seetext should be complete
1179% sentences and be terminated with the proper punctuation.
Fred Drake6659c301998-03-03 22:02:19 +00001180
Fred Drakee59feb52001-10-29 21:02:28 +00001181\ifpdf
Fred Drake24340ea1998-04-28 18:30:34 +00001182 \newcommand{\py@seemodule}[3][\py@modulebadkey]{%
Fred Drakeda943741999-01-13 17:09:06 +00001183 \par%
Fred Drake24340ea1998-04-28 18:30:34 +00001184 \ifx\py@modulebadkey#1\def\py@modulekey{#2}\else\def\py@modulekey{#1}\fi%
Fred Drake84bd6f31999-05-11 15:42:51 +00001185 \begin{fulllineitems}
Fred Drake84bd6f31999-05-11 15:42:51 +00001186 \item[\py@linkToName{label-module-\py@modulekey}{Module \module{#2}}
1187 (section \ref{module-\py@modulekey}):]
1188 #3
1189 \end{fulllineitems}
Fred Drakeebcb6581998-03-06 21:25:17 +00001190 }
Fred Drakee59feb52001-10-29 21:02:28 +00001191\else
1192 \newcommand{\py@seemodule}[3][\py@modulebadkey]{%
1193 \par%
1194 \ifx\py@modulebadkey#1\def\py@modulekey{#2}\else\def\py@modulekey{#1}\fi%
1195 \begin{fulllineitems}
1196 \item[Module \module{#2} (section \ref{module-\py@modulekey}):]
1197 #3
1198 \end{fulllineitems}
1199 }
1200\fi
1201
Fred Drake1592c4c2005-03-10 04:01:14 +00001202% \seelink{url}{link text}{why it's interesting}
Fred Drake4f687b32004-01-08 14:57:27 +00001203\newcommand{\py@seelink}[3]{%
1204 \par
1205 \begin{fulllineitems}
1206 \item[\ulink{#2}{#1}]
1207 #3
1208 \end{fulllineitems}
1209}
Fred Drake48449982000-09-12 17:52:33 +00001210% \seetitle[url]{title}{why it's interesting}
1211\newcommand{\py@seetitle}[3][\py@modulebadkey]{%
1212 \par
1213 \begin{fulllineitems}
1214 \item[\citetitle{#2}]
1215 \ifx\py@modulebadkey#1\else
1216 \item[{\small{(\url{#1})}}]
1217 \fi
1218 #3
1219 \end{fulllineitems}
1220}
Fred Drake4e607962000-09-09 06:01:25 +00001221% \seepep{number}{title}{why it's interesting}
1222\newcommand{\py@seepep}[3]{%
1223 \par%
1224 \begin{fulllineitems}
1225 \item[\pep{#1}, ``\emph{#2}'']
1226 #3
1227 \end{fulllineitems}
1228}
Fred Drake64b72b62000-04-26 18:13:58 +00001229% \seerfc{number}{title}{why it's interesting}
1230\newcommand{\py@seerfc}[3]{%
1231 \par%
1232 \begin{fulllineitems}
1233 \item[\rfc{#1}, ``\emph{#2}'']
1234 #3
1235 \end{fulllineitems}
1236}
Fred Drake51313f12000-05-09 16:18:44 +00001237% \seeurl{url}{why it's interesting}
1238\newcommand{\py@seeurl}[2]{%
1239 \par%
1240 \begin{fulllineitems}
1241 \item[\url{#1}]
1242 #2
1243 \end{fulllineitems}
1244}
Fred Drake5ed35fd2001-11-30 18:09:54 +00001245
1246\newenvironment{seealso*}{
Fred Drake9466b9a1999-03-18 16:18:27 +00001247 \par
Fred Drake6659c301998-03-03 22:02:19 +00001248 \def\seetext##1{\par{##1}}
Fred Drake24340ea1998-04-28 18:30:34 +00001249 \let\seemodule=\py@seemodule
Fred Drake48449982000-09-12 17:52:33 +00001250 \let\seepep=\py@seepep
Fred Drake64b72b62000-04-26 18:13:58 +00001251 \let\seerfc=\py@seerfc
Fred Drake48449982000-09-12 17:52:33 +00001252 \let\seetitle=\py@seetitle
Fred Drake51313f12000-05-09 16:18:44 +00001253 \let\seeurl=\py@seeurl
Fred Drake4f687b32004-01-08 14:57:27 +00001254 \let\seelink=\py@seelink
Fred Drake6659c301998-03-03 22:02:19 +00001255}{\par}
Fred Drake5ed35fd2001-11-30 18:09:54 +00001256\newenvironment{seealso}{
1257 \par
1258 \strong{See Also:}
1259 \par
1260 \def\seetext##1{\par{##1}}
1261 \let\seemodule=\py@seemodule
1262 \let\seepep=\py@seepep
1263 \let\seerfc=\py@seerfc
1264 \let\seetitle=\py@seetitle
1265 \let\seeurl=\py@seeurl
Fred Drake4f687b32004-01-08 14:57:27 +00001266 \let\seelink=\py@seelink
Fred Drake5ed35fd2001-11-30 18:09:54 +00001267}{\par}
Fred Drake6659c301998-03-03 22:02:19 +00001268
Fred Drakeaf958c71998-07-27 20:32:33 +00001269% Allow the Python release number to be specified independently of the
Fred Drake6659c301998-03-03 22:02:19 +00001270% \date{}. This allows the date to reflect the document's date and
1271% release to specify the Python release that is documented.
1272%
Fred Drake24340ea1998-04-28 18:30:34 +00001273\newcommand{\py@release}{}
Fred Drake6659c301998-03-03 22:02:19 +00001274\newcommand{\version}{}
Fred Drakeaf2b7142000-09-14 20:11:05 +00001275\newcommand{\shortversion}{}
Fred Drakec65218e2001-06-20 21:17:09 +00001276\newcommand{\releaseinfo}{}
Fred Drake6659c301998-03-03 22:02:19 +00001277\newcommand{\releasename}{Release}
1278\newcommand{\release}[1]{%
Fred Drake24340ea1998-04-28 18:30:34 +00001279 \renewcommand{\py@release}{\releasename\space\version}%
Fred Drake6659c301998-03-03 22:02:19 +00001280 \renewcommand{\version}{#1}}
Fred Drakeaf2b7142000-09-14 20:11:05 +00001281\newcommand{\setshortversion}[1]{%
1282 \renewcommand{\shortversion}{#1}}
Fred Drakec65218e2001-06-20 21:17:09 +00001283\newcommand{\setreleaseinfo}[1]{%
1284 \renewcommand{\releaseinfo}{#1}}
Fred Drake6659c301998-03-03 22:02:19 +00001285
1286% Allow specification of the author's address separately from the
1287% author's name. This can be used to format them differently, which
1288% is a good thing.
1289%
Fred Drake24340ea1998-04-28 18:30:34 +00001290\newcommand{\py@authoraddress}{}
1291\newcommand{\authoraddress}[1]{\renewcommand{\py@authoraddress}{#1}}
Fred Drake6df93ef1998-05-14 20:56:31 +00001292\let\developersaddress=\authoraddress
1293\let\developer=\author
1294\let\developers=\author
Fred Drake6659c301998-03-03 22:02:19 +00001295
Fred Drake6659c301998-03-03 22:02:19 +00001296% This sets up the fancy chapter headings that make the documents look
1297% at least a little better than the usual LaTeX output.
1298%
Fred Drake1c8d0e01998-03-07 05:29:15 +00001299\@ifundefined{ChTitleVar}{}{
Fred Drake24340ea1998-04-28 18:30:34 +00001300 \ChNameVar{\raggedleft\normalsize\py@HeaderFamily}
1301 \ChNumVar{\raggedleft \bfseries\Large\py@HeaderFamily}
1302 \ChTitleVar{\raggedleft \rm\Huge\py@HeaderFamily}
Fred Drake6659c301998-03-03 22:02:19 +00001303 % This creates chapter heads without the leading \vspace*{}:
Fred Drake1c8d0e01998-03-07 05:29:15 +00001304 \def\@makechapterhead#1{%
1305 {\parindent \z@ \raggedright \normalfont
1306 \ifnum \c@secnumdepth >\m@ne
Fred Drake6659c301998-03-03 22:02:19 +00001307 \DOCH
1308 \fi
Fred Drake1c8d0e01998-03-07 05:29:15 +00001309 \interlinepenalty\@M
Fred Drake6659c301998-03-03 22:02:19 +00001310 \DOTI{#1}
1311 }
1312 }
Fred Drake6659c301998-03-03 22:02:19 +00001313}
1314
Fred Drake3bf78651998-05-20 17:42:17 +00001315
1316% Definition lists; requested by AMK for HOWTO documents. Probably useful
1317% elsewhere as well, so keep in in the general style support.
1318%
1319\newenvironment{definitions}{%
1320 \begin{description}%
Fred Drakef9acc591998-09-09 15:27:43 +00001321 \def\term##1{\item[##1]\mbox{}\\*[0mm]}
Fred Drake3bf78651998-05-20 17:42:17 +00001322}{%
1323 \end{description}%
1324}
1325
Fred Drake6659c301998-03-03 22:02:19 +00001326% Tell TeX about pathological hyphenation cases:
1327\hyphenation{Base-HTTP-Re-quest-Hand-ler}