diff options
author | Georg Brandl <georg@python.org> | 2010-07-11 10:22:44 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-07-11 10:22:44 (GMT) |
commit | 349d558e0d732d49cd1e42e3738496e868f32cfc (patch) | |
tree | e8fb39ef8cf7b7d706785e08e54ae0973962a104 /Doc/distutils/extending.rst | |
parent | 05bfcc590d1ddd7b2638075ce3db2d78d007e1d5 (diff) | |
download | cpython-349d558e0d732d49cd1e42e3738496e868f32cfc.zip cpython-349d558e0d732d49cd1e42e3738496e868f32cfc.tar.gz cpython-349d558e0d732d49cd1e42e3738496e868f32cfc.tar.bz2 |
#9223: link to Command class reference, and move Command interface docs nearer to class docs.
Diffstat (limited to 'Doc/distutils/extending.rst')
-rw-r--r-- | Doc/distutils/extending.rst | 4 |
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`. |