diff options
author | Georg Brandl <georg@python.org> | 2013-03-28 12:28:44 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-03-28 12:28:44 (GMT) |
commit | 44ea77bd817c0b50e01344b7e8758995aaeebb63 (patch) | |
tree | d16064ba6c2225e5842ac7215d8d08eb6d85bb54 /Doc/distutils | |
parent | 6ba6b13e3291fdb1abc746183d428120872807a0 (diff) | |
download | cpython-44ea77bd817c0b50e01344b7e8758995aaeebb63.zip cpython-44ea77bd817c0b50e01344b7e8758995aaeebb63.tar.gz cpython-44ea77bd817c0b50e01344b7e8758995aaeebb63.tar.bz2 |
Closes #4159: add LaTeX tabular column specifications to tables that otherwise are cut off or have overlapping text.
Diffstat (limited to 'Doc/distutils')
-rw-r--r-- | Doc/distutils/apiref.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/distutils/apiref.rst b/Doc/distutils/apiref.rst index 1381afc..c323775 100644 --- a/Doc/distutils/apiref.rst +++ b/Doc/distutils/apiref.rst @@ -26,6 +26,8 @@ setup script). Indirectly provides the :class:`distutils.dist.Distribution` and The setup function takes a large number of arguments. These are laid out in the following table. + .. tabularcolumns:: |l|L|L| + +--------------------+--------------------------------+-------------------------------------------------------------+ | argument name | value | type | +====================+================================+=============================================================+ @@ -125,6 +127,8 @@ setup script). Indirectly provides the :class:`distutils.dist.Distribution` and *stop_after* tells :func:`setup` when to stop processing; possible values: + .. tabularcolumns:: |l|L| + +---------------+---------------------------------------------+ | value | description | +===============+=============================================+ @@ -165,6 +169,8 @@ the full reference. The Extension class describes a single C or C++extension module in a setup script. It accepts the following keyword arguments in its constructor: + .. tabularcolumns:: |l|L|l| + +------------------------+--------------------------------+---------------------------+ | argument name | value | type | +========================+================================+===========================+ @@ -1562,6 +1568,8 @@ lines, and joining lines with backslashes. The options are all boolean, and affect the values returned by :meth:`readline` + .. tabularcolumns:: |l|L|l| + +------------------+--------------------------------+---------+ | option name | description | default | +==================+================================+=========+ |