[Python-checkins] r75796 - in python/branches/release26-maint: Doc/distutils/apiref.rst

georg.brandl python-checkins at python.org
Tue Oct 27 16:10:48 CET 2009


Author: georg.brandl
Date: Tue Oct 27 16:10:48 2009
New Revision: 75796

Log:
Merged revisions 75795 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r75795 | georg.brandl | 2009-10-27 16:10:22 +0100 (Di, 27 Okt 2009) | 1 line
  
  Fix a strange mis-edit.
........


Modified:
   python/branches/release26-maint/   (props changed)
   python/branches/release26-maint/Doc/distutils/apiref.rst

Modified: python/branches/release26-maint/Doc/distutils/apiref.rst
==============================================================================
--- python/branches/release26-maint/Doc/distutils/apiref.rst	(original)
+++ python/branches/release26-maint/Doc/distutils/apiref.rst	Tue Oct 27 16:10:48 2009
@@ -1962,9 +1962,9 @@
 Subclasses of :class:`Command` must define the following methods.
 
 
-.. method:: Command.initialize_options()(S)
+.. method:: Command.initialize_options()
 
-   et default values for all the options that this command supports.  Note that
+   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 command-line.  Thus, this is not the place to code
    dependencies between options; generally, :meth:`initialize_options`


More information about the Python-checkins mailing list