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/reference | |
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/reference')
-rw-r--r-- | Doc/reference/datamodel.rst | 2 | ||||
-rw-r--r-- | Doc/reference/expressions.rst | 2 | ||||
-rw-r--r-- | Doc/reference/import.rst | 3 |
3 files changed, 4 insertions, 3 deletions
diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst index 7c51068..e815690 100644 --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -448,6 +448,8 @@ Callable types Special attributes: + .. tabularcolumns:: |l|L|l| + +-------------------------+-------------------------------+-----------+ | Attribute | Meaning | | +=========================+===============================+===========+ diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst index f88709e..c866f84 100644 --- a/Doc/reference/expressions.rst +++ b/Doc/reference/expressions.rst @@ -1335,7 +1335,7 @@ groups from right to left). | :keyword:`not` ``x`` | Boolean NOT | +-----------------------------------------------+-------------------------------------+ | :keyword:`in`, :keyword:`not in`, | Comparisons, including membership | -| :keyword:`is`, :keyword:`is not`, ``<``, | tests and identity tests, | +| :keyword:`is`, :keyword:`is not`, ``<``, | tests and identity tests | | ``<=``, ``>``, ``>=``, ``!=``, ``==`` | | +-----------------------------------------------+-------------------------------------+ | ``|`` | Bitwise OR | diff --git a/Doc/reference/import.rst b/Doc/reference/import.rst index ef0235d..5874606 100644 --- a/Doc/reference/import.rst +++ b/Doc/reference/import.rst @@ -685,8 +685,7 @@ proposed ``__name__`` for semantics :pep:`366` would eventually specify for :pep:`338` defines executing modules as scripts. -Footnotes -========= +.. rubric:: Footnotes .. [#fnmo] See :class:`types.ModuleType`. |