summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-05-28 22:14:45 (GMT)
committerÉric Araujo <merwok@netwok.org>2011-05-28 22:14:45 (GMT)
commit000893fab2c03c8947c9c34422e44086d88c9120 (patch)
tree404dbdd4034d53d94fef1fab8cb4c36fa6a86a19 /Doc
parent489c8ff26b673553f568266c732182346ee74acf (diff)
downloadcpython-000893fab2c03c8947c9c34422e44086d88c9120.zip
cpython-000893fab2c03c8947c9c34422e44086d88c9120.tar.gz
cpython-000893fab2c03c8947c9c34422e44086d88c9120.tar.bz2
Minor touch-ups in distutils.cmd.Command doc
Diffstat (limited to 'Doc')
-rw-r--r--Doc/distutils/apiref.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/distutils/apiref.rst b/Doc/distutils/apiref.rst
index 81de1ad..74446bc 100644
--- a/Doc/distutils/apiref.rst
+++ b/Doc/distutils/apiref.rst
@@ -21,7 +21,7 @@ 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.
The setup function takes a large number of arguments. These are laid out in the
following table.
@@ -1759,7 +1759,7 @@ Subclasses of :class:`Command` must define the following methods.
predicate)``, with *command_name* a string and *predicate* a function, a
string or ``None``. *predicate* is a method of the parent command that
determines whether the corresponding command is applicable in the current
- situation. (E.g. we ``install_headers`` is only applicable if we have any C
+ situation. (E.g. ``install_headers`` is only applicable if we have any C
header files to install.) If *predicate* is ``None``, that command is always
applicable.