diff options
author | Georg Brandl <georg@python.org> | 2009-10-27 15:10:22 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-10-27 15:10:22 (GMT) |
commit | 5098bc944849a7e9a355ae9647d740935893fad1 (patch) | |
tree | 9a3b1505f4b8e31c962bfa7cc56840141e2d4116 /Doc/distutils | |
parent | b53e1a6ed36cfcd0e7452e3c41dc47e4224dfdd1 (diff) | |
download | cpython-5098bc944849a7e9a355ae9647d740935893fad1.zip cpython-5098bc944849a7e9a355ae9647d740935893fad1.tar.gz cpython-5098bc944849a7e9a355ae9647d740935893fad1.tar.bz2 |
Fix a strange mis-edit.
Diffstat (limited to 'Doc/distutils')
-rw-r--r-- | Doc/distutils/apiref.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/distutils/apiref.rst b/Doc/distutils/apiref.rst index 6a640d8..a70c807 100644 --- a/Doc/distutils/apiref.rst +++ b/Doc/distutils/apiref.rst @@ -1958,9 +1958,9 @@ it so that it's implementing the class :class:`peel_banana`, a subclass of 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` |