From: Terry Jan Reedy Date: Sat, 9 Jan 2016 17:22:00 +0000 (-0500) Subject: Issue #26029: Finish correction. X-Git-Tag: v3.6.0a1~806^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6401e795203cc9f12ab3aff4212c372a1706b3d1;p=thirdparty%2FPython%2Fcpython.git Issue #26029: Finish correction. --- diff --git a/Doc/extending/building.rst b/Doc/extending/building.rst index 6f1d23e7083a..4a30181d03a1 100644 --- a/Doc/extending/building.rst +++ b/Doc/extending/building.rst @@ -81,7 +81,7 @@ In the :file:`setup.py`, all execution is performed by calling the ``setup`` function. This takes a variable number of keyword arguments, of which the example above uses only a subset. Specifically, the example specifies meta-information to build packages, and it specifies the contents of the -package. Normally, a package will contain addition modules, like Python +package. Normally, a package will contain additional modules, like Python source modules, documentation, subpackages, etc. Please refer to the distutils documentation in :ref:`distutils-index` to learn more about the features of distutils; this section explains building extension modules only.