summaryrefslogtreecommitdiffstats
path: root/Doc/distutils
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-07-11 10:29:37 (GMT)
committerGeorg Brandl <georg@python.org>2010-07-11 10:29:37 (GMT)
commitfbf2f14777d4d4d6bd6ea635e3413201964606f5 (patch)
tree4d94db798bff235b3b1398d678230884850cb18d /Doc/distutils
parent9d4725281af225f09a24322183927920e253ccd7 (diff)
downloadcpython-fbf2f14777d4d4d6bd6ea635e3413201964606f5.zip
cpython-fbf2f14777d4d4d6bd6ea635e3413201964606f5.tar.gz
cpython-fbf2f14777d4d4d6bd6ea635e3413201964606f5.tar.bz2
Merged revisions 82806 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r82806 | georg.brandl | 2010-07-11 12:22:44 +0200 (So, 11 Jul 2010) | 1 line #9223: link to Command class reference, and move Command interface docs nearer to class docs. ........
Diffstat (limited to 'Doc/distutils')
-rw-r--r--Doc/distutils/extending.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/distutils/extending.rst b/Doc/distutils/extending.rst
index 972ff02..5a70d03 100644
--- a/Doc/distutils/extending.rst
+++ b/Doc/distutils/extending.rst
@@ -15,8 +15,8 @@ want to modify existing commands; many simply add a few file extensions that
should be copied into packages in addition to :file:`.py` files as a
convenience.
-Most distutils command implementations are subclasses of the :class:`Command`
-class from :mod:`distutils.cmd`. New commands may directly inherit from
+Most distutils command implementations are subclasses of the
+:class:`distutils.cmd.Command` class. New commands may directly inherit from
:class:`Command`, while replacements often derive from :class:`Command`
indirectly, directly subclassing the command they are replacing. Commands are
required to derive from :class:`Command`.