[Python-checkins] r54652 - python/trunk/Doc/dist/dist.tex

georg.brandl python-checkins at python.org
Mon Apr 2 00:40:13 CEST 2007


Author: georg.brandl
Date: Mon Apr  2 00:40:12 2007
New Revision: 54652

Modified:
   python/trunk/Doc/dist/dist.tex
Log:
Explicit class names.


Modified: python/trunk/Doc/dist/dist.tex
==============================================================================
--- python/trunk/Doc/dist/dist.tex	(original)
+++ python/trunk/Doc/dist/dist.tex	Mon Apr  2 00:40:12 2007
@@ -3733,7 +3733,7 @@
 
 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 @@
 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 @@
 \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


More information about the Python-checkins mailing list