Commit a46ba7c5 authored by Ezio Melotti's avatar Ezio Melotti

#17841: remove missing codecs aliases from the documentation. Patch by Thomas Fenzl.

parent a446348e
...@@ -1188,44 +1188,44 @@ particular, the following variants typically exist: ...@@ -1188,44 +1188,44 @@ particular, the following variants typically exist:
The following codecs provide bytes-to-bytes mappings. The following codecs provide bytes-to-bytes mappings.
.. tabularcolumns:: |l|p{0.3\linewidth}|p{0.3\linewidth}| .. tabularcolumns:: |l|L|
+--------------------+---------------------------+---------------------------+ +--------------------+---------------------------+
| Codec | Aliases | Purpose | | Codec | Purpose |
+====================+===========================+===========================+ +====================+===========================+
| base64_codec | base64, base-64 | Convert operand to MIME | | base64_codec | Convert operand to MIME |
| | | base64 (the result always | | | base64 (the result always |
| | | includes a trailing | | | includes a trailing |
| | | ``'\n'``) | | | ``'\n'``) |
+--------------------+---------------------------+---------------------------+ +--------------------+---------------------------+
| bz2_codec | bz2 | Compress the operand | | bz2_codec | Compress the operand |
| | | using bz2 | | | using bz2 |
+--------------------+---------------------------+---------------------------+ +--------------------+---------------------------+
| hex_codec | hex | Convert operand to | | hex_codec | Convert operand to |
| | | hexadecimal | | | hexadecimal |
| | | representation, with two | | | representation, with two |
| | | digits per byte | | | digits per byte |
+--------------------+---------------------------+---------------------------+ +--------------------+---------------------------+
| quopri_codec | quopri, quoted-printable, | Convert operand to MIME | | quopri_codec | Convert operand to MIME |
| | quotedprintable | quoted printable | | | quoted printable |
+--------------------+---------------------------+---------------------------+ +--------------------+---------------------------+
| uu_codec | uu | Convert the operand using | | uu_codec | Convert the operand using |
| | | uuencode | | | uuencode |
+--------------------+---------------------------+---------------------------+ +--------------------+---------------------------+
| zlib_codec | zip, zlib | Compress the operand | | zlib_codec | Compress the operand |
| | | using gzip | | | using gzip |
+--------------------+---------------------------+---------------------------+ +--------------------+---------------------------+
The following codecs provide string-to-string mappings. The following codecs provide string-to-string mappings.
.. tabularcolumns:: |l|p{0.3\linewidth}|p{0.3\linewidth}| .. tabularcolumns:: |l|L|
+--------------------+---------------------------+---------------------------+ +--------------------+---------------------------+
| Codec | Aliases | Purpose | | Codec | Purpose |
+====================+===========================+===========================+ +====================+===========================+
| rot_13 | rot13 | Returns the Caesar-cypher | | rot_13 | Returns the Caesar-cypher |
| | | encryption of the operand | | | encryption of the operand |
+--------------------+---------------------------+---------------------------+ +--------------------+---------------------------+
.. versionadded:: 3.2 .. versionadded:: 3.2
bytes-to-bytes and string-to-string codecs. bytes-to-bytes and string-to-string codecs.
......
...@@ -365,6 +365,7 @@ Michael Farrell ...@@ -365,6 +365,7 @@ Michael Farrell
Troy J. Farrell Troy J. Farrell
Mark Favas Mark Favas
Boris Feld Boris Feld
Thomas Fenzl
Niels Ferguson Niels Ferguson
Sebastian Fernandez Sebastian Fernandez
Florian Festi Florian Festi
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment