[Python-checkins] cpython (3.2): Fix markup: arguments in a class directive are __init__ arguments, not base

eric.araujo python-checkins at python.org
Wed Jun 1 19:47:54 CEST 2011


http://hg.python.org/cpython/rev/12c1182f33bc
changeset:   70588:12c1182f33bc
branch:      3.2
parent:      70581:26e25dc1354e
user:        Éric Araujo <merwok at netwok.org>
date:        Tue May 31 21:50:38 2011 +0200
summary:
  Fix markup: arguments in a class directive are __init__ arguments, not base classes

files:
  Doc/distutils/apiref.rst |  8 ++++----
  1 files changed, 4 insertions(+), 4 deletions(-)


diff --git a/Doc/distutils/apiref.rst b/Doc/distutils/apiref.rst
--- a/Doc/distutils/apiref.rst
+++ b/Doc/distutils/apiref.rst
@@ -1814,7 +1814,7 @@
 .. 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 @@
    :synopsis: Build the .py/.pyc files of a package
 
 
-.. class:: build_py(Command)
-
-.. class:: build_py_2to3(build_py)
+.. class:: 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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list