diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2015-07-22 03:34:16 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2015-07-22 03:34:16 (GMT) |
commit | c8115b8ba56ad33085e4447fc17de9fa9a682c8b (patch) | |
tree | 49d14a8d854d799b5a45a61c913a6014d1207ae5 /Doc/extending | |
parent | 296b347db7c68b1a2aadda34ddf83c93eed0ad83 (diff) | |
parent | c75e2dd4c626561ce15ae0f4e24428ed0eb1855a (diff) | |
download | cpython-c8115b8ba56ad33085e4447fc17de9fa9a682c8b.zip cpython-c8115b8ba56ad33085e4447fc17de9fa9a682c8b.tar.gz cpython-c8115b8ba56ad33085e4447fc17de9fa9a682c8b.tar.bz2 |
Issue #24680: Merge with 3.4
Diffstat (limited to 'Doc/extending')
-rw-r--r-- | Doc/extending/building.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/extending/building.rst b/Doc/extending/building.rst index aafa3d8..163179d 100644 --- a/Doc/extending/building.rst +++ b/Doc/extending/building.rst @@ -87,7 +87,7 @@ documentation in :ref:`distutils-index` to learn more about the features of distutils; this section explains building extension modules only. It is common to pre-compute arguments to :func:`setup`, to better structure the -driver script. In the example above, the\ ``ext_modules`` argument to +driver script. In the example above, the ``ext_modules`` argument to :func:`setup` is a list of extension modules, each of which is an instance of the :class:`~distutils.extension.Extension`. In the example, the instance defines an extension named ``demo`` which is build by compiling a single source |