diff options
author | Éric Araujo <merwok@netwok.org> | 2011-05-31 21:50:38 +0200 |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-05-31 21:50:38 +0200 |
commit | 1897b43db97e6bdc9d31b9a7ba4e89ea0fd7b2f2 (patch) | |
tree | 86bf0996d36b698388c66c75fa748e476a140dfa /Doc/distutils | |
parent | 5a5309cdebfc05ea463703603b5856ce06cb365c (diff) | |
download | cpython-1897b43db97e6bdc9d31b9a7ba4e89ea0fd7b2f2.tar.gz |
Fix markup: arguments in a class directive are __init__ arguments, not base classes
Diffstat (limited to 'Doc/distutils')
-rw-r--r-- | Doc/distutils/apiref.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/distutils/apiref.rst b/Doc/distutils/apiref.rst index dc5bcf2ba0..1fb6f9e45f 100644 --- a/Doc/distutils/apiref.rst +++ b/Doc/distutils/apiref.rst @@ -1814,7 +1814,7 @@ Subclasses of :class:`Command` must define the following methods. .. module:: distutils.command.bdist_msi :synopsis: Build a binary distribution as a Windows MSI file -.. class:: bdist_msi(Command) +.. class:: bdist_msi Builds a `Windows Installer`_ (.msi) binary package. @@ -1893,9 +1893,9 @@ Subclasses of :class:`Command` must define the following methods. :synopsis: Build the .py/.pyc files of a package -.. class:: build_py(Command) +.. class:: build_py -.. class:: build_py_2to3(build_py) +.. class:: build_py_2to3 Alternative implementation of build_py which also runs the 2to3 conversion library on each .py file that is going to be |