From: Guido van Rossum Date: Thu, 22 May 1997 20:43:24 +0000 (+0000) Subject: Added cvardesc and ctypedesc macros, for api.tex. X-Git-Tag: v1.5a3~478 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=36f3502151e2bd796f5688171df00c3f3498dfd8;p=python Added cvardesc and ctypedesc macros, for api.tex. --- diff --git a/Doc/myformat.sty b/Doc/myformat.sty index b117478098..3b415d0e5b 100644 --- a/Doc/myformat.sty +++ b/Doc/myformat.sty @@ -114,11 +114,22 @@ \let\endfulllineitems\endlist -% cfuncdesc should be called as an \begin{cfuncdesc} ... \end{cfuncdesc} +% cfuncdesc should be called as +% \begin{cfuncdesc}{type}{name}{arglist} +% ... description ... +% \end{cfuncdesc} \newcommand{\cfuncline}[3]{\item[\code{#1 #2(\varvars{#3})}]\ttindex{#2}} \newcommand{\cfuncdesc}[3]{\fulllineitems\cfuncline{#1}{#2}{#3}} \let\endcfuncdesc\endfulllineitems +\newcommand{\cvarline}[2]{\item[\code{#1 #2}]\ttindex{#2}} +\newcommand{\cvardesc}[2]{\fulllineitems\cvarline{#1}{#2}} +\let\endcvardesc\endfulllineitems + +\newcommand{\ctypeline}[1]{\item[\code{#1}]\ttindex{#1}} +\newcommand{\ctypedesc}[1]{\fulllineitems\ctypeline{#1}} +\let\endctypedesc\endfulllineitems + % funcdesc should be called as an \begin{funcdesc} ... \end{funcdesc} \newcommand{\funcline}[2]{\item[\code{#1(\varvars{#2})}]\ttindex{#1}} \newcommand{\funcdesc}[2]{\fulllineitems\funcline{#1}{#2}}