diff options
author | Georg Brandl <georg@python.org> | 2007-04-01 22:40:12 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-04-01 22:40:12 (GMT) |
commit | 6ec04ffc5d08004e5e8b258189858538547c20d7 (patch) | |
tree | 8a5751210a8373869fd22ea47e1fef2d8fb8fbd2 /Doc/dist | |
parent | ae91afdcfb963352360152ca6571becfcc0bab68 (diff) | |
download | cpython-6ec04ffc5d08004e5e8b258189858538547c20d7.zip cpython-6ec04ffc5d08004e5e8b258189858538547c20d7.tar.gz cpython-6ec04ffc5d08004e5e8b258189858538547c20d7.tar.bz2 |
Explicit class names.
Diffstat (limited to 'Doc/dist')
-rw-r--r-- | Doc/dist/dist.tex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/dist/dist.tex b/Doc/dist/dist.tex index 00af64a..928b642 100644 --- a/Doc/dist/dist.tex +++ b/Doc/dist/dist.tex @@ -3733,7 +3733,7 @@ implementing the class \class{peel_banana}, a subclass of Subclasses of \class{Command} must define the following methods. -\begin{methoddesc}{initialize_options()} +\begin{methoddesc}[Command]{initialize_options()} Set default values for all the options that this command supports. Note that these defaults may be overridden by other commands, by the setup script, by config files, or by the @@ -3742,7 +3742,7 @@ between options; generally, \method{initialize_options()} implementations are just a bunch of \samp{self.foo = None} assignments. \end{methoddesc} -\begin{methoddesc}{finalize_options}{} +\begin{methoddesc}[Command]{finalize_options}{} Set final values for all the options that this command supports. This is always called as late as possible, ie. after any option assignments from the command-line or from other commands have been @@ -3751,7 +3751,7 @@ done. Thus, this is the place to to code option dependencies: if \var{bar} as long as \var{foo} still has the same value it was assigned in \method{initialize_options()}. \end{methoddesc} -\begin{methoddesc}{run}{} +\begin{methoddesc}[Command]{run}{} A command's raison d'etre: carry out the action it exists to perform, controlled by the options initialized in \method{initialize_options()}, customized by other commands, the setup |