summaryrefslogtreecommitdiffstats
path: root/Doc/distutils
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-07-14 08:53:18 (GMT)
committerGeorg Brandl <georg@python.org>2010-07-14 08:53:18 (GMT)
commit49b31d0a0bfbc1c4dc39b8f3178b00669524da10 (patch)
treec74435e9c5c2ee7721e0e6113326b098e8620964 /Doc/distutils
parente767e047c82b243d4fdce6ace2196dc0459f47c4 (diff)
downloadcpython-49b31d0a0bfbc1c4dc39b8f3178b00669524da10.zip
cpython-49b31d0a0bfbc1c4dc39b8f3178b00669524da10.tar.gz
cpython-49b31d0a0bfbc1c4dc39b8f3178b00669524da10.tar.bz2
Remove XXX from text.
Diffstat (limited to 'Doc/distutils')
-rw-r--r--Doc/distutils/apiref.rst14
1 files changed, 8 insertions, 6 deletions
diff --git a/Doc/distutils/apiref.rst b/Doc/distutils/apiref.rst
index 2401da3..d65c59f 100644
--- a/Doc/distutils/apiref.rst
+++ b/Doc/distutils/apiref.rst
@@ -21,7 +21,9 @@ setup script). Indirectly provides the :class:`distutils.dist.Distribution` and
.. function:: setup(arguments)
The basic do-everything function that does most everything you could ever ask
- for from a Distutils method. See XXXXX
+ for from a Distutils method.
+
+ .. See XXXXX
The setup function takes a large number of arguments. These are laid out in the
following table.
@@ -1743,11 +1745,11 @@ Subclasses of :class:`Command` must define the following methods.
.. method:: Command.run()
- A command's raison d'etre: carry out the action it exists to perform, controlled
- by the options initialized in :meth:`initialize_options`, customized by other
- commands, the setup script, the command-line, and config files, and finalized in
- :meth:`finalize_options`. All terminal output and filesystem interaction should
- be done by :meth:`run`.
+ A command's raison d'etre: carry out the action it exists to perform,
+ controlled by the options initialized in :meth:`initialize_options`,
+ customized by other commands, the setup script, the command-line, and config
+ files, and finalized in :meth:`finalize_options`. All terminal output and
+ filesystem interaction should be done by :meth:`run`.
.. attribute:: Command.sub_commands