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/library/codecs.rst | |
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/library/codecs.rst')
-rw-r--r-- | Doc/library/codecs.rst | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Doc/library/codecs.rst b/Doc/library/codecs.rst index 28ea89d..9e1a9c7 100644 --- a/Doc/library/codecs.rst +++ b/Doc/library/codecs.rst @@ -315,6 +315,8 @@ To simplify and standardize error handling, the :meth:`encode` and providing the *errors* string argument. The following string values are defined and implemented by all standard Python codecs: +.. tabularcolumns:: |l|L| + +-------------------------+-----------------------------------------------+ | Value | Meaning | +=========================+===============================================+ @@ -926,6 +928,8 @@ particular, the following variants typically exist: * an IBM PC code page, which is ASCII compatible +.. tabularcolumns:: |l|p{0.3\linewidth}|p{0.3\linewidth}| + +-----------------+--------------------------------+--------------------------------+ | Codec | Aliases | Languages | +=================+================================+================================+ @@ -1140,6 +1144,8 @@ particular, the following variants typically exist: .. XXX fix here, should be in above table +.. tabularcolumns:: |l|p{0.3\linewidth}|p{0.3\linewidth}| + +--------------------+---------+---------------------------+ | Codec | Aliases | Purpose | +====================+=========+===========================+ @@ -1182,6 +1188,8 @@ particular, the following variants typically exist: The following codecs provide bytes-to-bytes mappings. +.. tabularcolumns:: |l|p{0.3\linewidth}|p{0.3\linewidth}| + +--------------------+---------------------------+---------------------------+ | Codec | Aliases | Purpose | +====================+===========================+===========================+ @@ -1208,6 +1216,8 @@ The following codecs provide bytes-to-bytes mappings. The following codecs provide string-to-string mappings. +.. tabularcolumns:: |l|p{0.3\linewidth}|p{0.3\linewidth}| + +--------------------+---------------------------+---------------------------+ | Codec | Aliases | Purpose | +====================+===========================+===========================+ |