summaryrefslogtreecommitdiffstats
path: root/Doc/library/packaging.compiler.rst
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-06-09 06:18:17 (GMT)
committerÉric Araujo <merwok@netwok.org>2011-06-09 06:18:17 (GMT)
commitc7f9f2bfc7dbe9d26d0cbe159e9e8c2a5efe21d7 (patch)
tree3131c95ff9210f1be2676b3bf73ffb278c23b828 /Doc/library/packaging.compiler.rst
parenta462a80722eace73193f7abf106a12ec5867910c (diff)
downloadcpython-c7f9f2bfc7dbe9d26d0cbe159e9e8c2a5efe21d7.zip
cpython-c7f9f2bfc7dbe9d26d0cbe159e9e8c2a5efe21d7.tar.gz
cpython-c7f9f2bfc7dbe9d26d0cbe159e9e8c2a5efe21d7.tar.bz2
Document how to define extension modules in setup.cfg
Diffstat (limited to 'Doc/library/packaging.compiler.rst')
-rw-r--r--Doc/library/packaging.compiler.rst6
1 files changed, 4 insertions, 2 deletions
diff --git a/Doc/library/packaging.compiler.rst b/Doc/library/packaging.compiler.rst
index dac6263..cf88685 100644
--- a/Doc/library/packaging.compiler.rst
+++ b/Doc/library/packaging.compiler.rst
@@ -569,10 +569,10 @@ extension modules.
.. class:: Extension
The Extension class describes a single C or C++ extension module. It accepts
- the following keyword arguments in its constructor
+ the following keyword arguments in its constructor:
+------------------------+--------------------------------+---------------------------+
- | argument name | value | type |
+ | argument name | value | type [#]_ |
+========================+================================+===========================+
| *name* | the full name of the | string |
| | extension, including any | |
@@ -670,3 +670,5 @@ extension modules.
| | from the source extensions if | |
| | not provided. | |
+------------------------+--------------------------------+---------------------------+
+
+.. [#] For values documented as lists, the given type is the type of each element.