summaryrefslogtreecommitdiffstats
path: root/Doc/library/codecs.rst
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2013-05-10 02:21:35 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2013-05-10 02:21:35 (GMT)
commit173d4109b59f64eeb29601efb08497008d42dd2b (patch)
tree8fb4cac7eb802bd5bd9838c765fc2faf36121c17 /Doc/library/codecs.rst
parentddcb30440d42ba0c059218fba9367febe4dd664b (diff)
downloadcpython-173d4109b59f64eeb29601efb08497008d42dd2b.zip
cpython-173d4109b59f64eeb29601efb08497008d42dd2b.tar.gz
cpython-173d4109b59f64eeb29601efb08497008d42dd2b.tar.bz2
#17841: remove missing codecs aliases from the documentation. Patch by Thomas Fenzl.
Diffstat (limited to 'Doc/library/codecs.rst')
-rw-r--r--Doc/library/codecs.rst66
1 files changed, 33 insertions, 33 deletions
diff --git a/Doc/library/codecs.rst b/Doc/library/codecs.rst
index 87c2b39..27a02cd 100644
--- a/Doc/library/codecs.rst
+++ b/Doc/library/codecs.rst
@@ -1188,44 +1188,44 @@ particular, the following variants typically exist:
The following codecs provide bytes-to-bytes mappings.
-.. tabularcolumns:: |l|p{0.3\linewidth}|p{0.3\linewidth}|
+.. tabularcolumns:: |l|L|
-+--------------------+---------------------------+---------------------------+
-| Codec | Aliases | Purpose |
-+====================+===========================+===========================+
-| base64_codec | base64, base-64 | Convert operand to MIME |
-| | | base64 (the result always |
-| | | includes a trailing |
-| | | ``'\n'``) |
-+--------------------+---------------------------+---------------------------+
-| bz2_codec | bz2 | Compress the operand |
-| | | using bz2 |
-+--------------------+---------------------------+---------------------------+
-| hex_codec | hex | Convert operand to |
-| | | hexadecimal |
-| | | representation, with two |
-| | | digits per byte |
-+--------------------+---------------------------+---------------------------+
-| quopri_codec | quopri, quoted-printable, | Convert operand to MIME |
-| | quotedprintable | quoted printable |
-+--------------------+---------------------------+---------------------------+
-| uu_codec | uu | Convert the operand using |
-| | | uuencode |
-+--------------------+---------------------------+---------------------------+
-| zlib_codec | zip, zlib | Compress the operand |
-| | | using gzip |
-+--------------------+---------------------------+---------------------------+
++--------------------+---------------------------+
+| Codec | Purpose |
++====================+===========================+
+| base64_codec | Convert operand to MIME |
+| | base64 (the result always |
+| | includes a trailing |
+| | ``'\n'``) |
++--------------------+---------------------------+
+| bz2_codec | Compress the operand |
+| | using bz2 |
++--------------------+---------------------------+
+| hex_codec | Convert operand to |
+| | hexadecimal |
+| | representation, with two |
+| | digits per byte |
++--------------------+---------------------------+
+| quopri_codec | Convert operand to MIME |
+| | quoted printable |
++--------------------+---------------------------+
+| uu_codec | Convert the operand using |
+| | uuencode |
++--------------------+---------------------------+
+| zlib_codec | Compress the operand |
+| | using gzip |
++--------------------+---------------------------+
The following codecs provide string-to-string mappings.
-.. tabularcolumns:: |l|p{0.3\linewidth}|p{0.3\linewidth}|
+.. tabularcolumns:: |l|L|
-+--------------------+---------------------------+---------------------------+
-| Codec | Aliases | Purpose |
-+====================+===========================+===========================+
-| rot_13 | rot13 | Returns the Caesar-cypher |
-| | | encryption of the operand |
-+--------------------+---------------------------+---------------------------+
++--------------------+---------------------------+
+| Codec | Purpose |
++====================+===========================+
+| rot_13 | Returns the Caesar-cypher |
+| | encryption of the operand |
++--------------------+---------------------------+
.. versionadded:: 3.2
bytes-to-bytes and string-to-string codecs.