diff options
author | Éric Araujo <merwok@netwok.org> | 2011-06-01 17:39:27 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-06-01 17:39:27 (GMT) |
commit | affcf2967fdf7a2555c2a93d6b0e3def04f607c2 (patch) | |
tree | ef5a7d9b5d98c5dbfb4c1502eec7918fa0788c0e | |
parent | 88701e27e90c0b70e2b22b06ad8bbfa231cf99dc (diff) | |
parent | 5864b9fd3c5a227f73845b166e75fcbaf352a661 (diff) | |
download | cpython-affcf2967fdf7a2555c2a93d6b0e3def04f607c2.zip cpython-affcf2967fdf7a2555c2a93d6b0e3def04f607c2.tar.gz cpython-affcf2967fdf7a2555c2a93d6b0e3def04f607c2.tar.bz2 |
Branch merge
-rw-r--r-- | Doc/distutils/apiref.rst | 6 | ||||
-rw-r--r-- | Modules/_threadmodule.c | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Doc/distutils/apiref.rst b/Doc/distutils/apiref.rst index dc5bcf2..1fb6f9e 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 diff --git a/Modules/_threadmodule.c b/Modules/_threadmodule.c index d91c99a..ea038de 100644 --- a/Modules/_threadmodule.c +++ b/Modules/_threadmodule.c @@ -1091,7 +1091,7 @@ thread_PyThread_exit_thread(PyObject *self) PyDoc_STRVAR(exit_doc, "exit()\n\ -(PyThread_exit_thread() is an obsolete synonym)\n\ +(exit_thread() is an obsolete synonym)\n\ \n\ This is synonymous to ``raise SystemExit''. It will cause the current\n\ thread to exit silently unless the exception is caught."); |