[Python-checkins] cpython (3.3): #17841: remove missing codecs aliases from the documentation. Patch by Thomas

ezio.melotti python-checkins at python.org
Fri May 10 04:22:28 CEST 2013


http://hg.python.org/cpython/rev/ead47bc3a763
changeset:   83702:ead47bc3a763
branch:      3.3
parent:      83699:1fa70b797973
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Fri May 10 05:21:35 2013 +0300
summary:
  #17841: remove missing codecs aliases from the documentation.  Patch by Thomas Fenzl.

files:
  Doc/library/codecs.rst |  66 +++++++++++++++---------------
  Misc/ACKS              |   1 +
  2 files changed, 34 insertions(+), 33 deletions(-)


diff --git a/Doc/library/codecs.rst b/Doc/library/codecs.rst
--- a/Doc/library/codecs.rst
+++ b/Doc/library/codecs.rst
@@ -1188,44 +1188,44 @@
 
 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.
diff --git a/Misc/ACKS b/Misc/ACKS
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -365,6 +365,7 @@
 Troy J. Farrell
 Mark Favas
 Boris Feld
+Thomas Fenzl
 Niels Ferguson
 Sebastian Fernandez
 Florian Festi

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list