summaryrefslogtreecommitdiff
path: root/Doc/extending
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2016-01-09 03:28:01 -0500
committerTerry Jan Reedy <tjreedy@udel.edu>2016-01-09 03:28:01 -0500
commit3acf1708690b9b8c7bb41337498b11eff0166c92 (patch)
treee8debd47bc837f84834049c989ebca6e6819f8d8 /Doc/extending
parentb94591c2bfc64f98c9daf35d2481424ca116e077 (diff)
parent2a97f8a6d1fec1a19b23f159f40d79dbeac406d0 (diff)
downloadcpython-git-3acf1708690b9b8c7bb41337498b11eff0166c92.tar.gz
Merge with 3.5
Diffstat (limited to 'Doc/extending')
-rw-r--r--Doc/extending/building.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/extending/building.rst b/Doc/extending/building.rst
index 163179d683..6f1d23e708 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 of addition modules, like Python
+package. Normally, a package will contain addition 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.