[Python-checkins] r82807 - in python/branches/release27-maint: Doc/distutils/extending.rst

georg.brandl python-checkins at python.org
Sun Jul 11 12:29:37 CEST 2010


Author: georg.brandl
Date: Sun Jul 11 12:29:37 2010
New Revision: 82807

Log:
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.
........


Modified:
   python/branches/release27-maint/   (props changed)
   python/branches/release27-maint/Doc/distutils/extending.rst

Modified: python/branches/release27-maint/Doc/distutils/extending.rst
==============================================================================
--- python/branches/release27-maint/Doc/distutils/extending.rst	(original)
+++ python/branches/release27-maint/Doc/distutils/extending.rst	Sun Jul 11 12:29:37 2010
@@ -15,8 +15,8 @@
 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`.


More information about the Python-checkins mailing list