diff options
| author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-05-07 11:14:27 +0300 |
|---|---|---|
| committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-05-07 11:14:27 +0300 |
| commit | c58a3ea72c6dd315e6a3a283168832fb06b8e69d (patch) | |
| tree | 76d70a800ef062c6796c42b5a69895e25991bdaf /Doc/library/codecs.rst | |
| parent | 9c939bceeb0074bfc177041daaee75d8da5d1676 (diff) | |
| download | cpython-git-c58a3ea72c6dd315e6a3a283168832fb06b8e69d.tar.gz | |
#17714: document that the base64 codec adds a trailing newline.
Diffstat (limited to 'Doc/library/codecs.rst')
| -rw-r--r-- | Doc/library/codecs.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/library/codecs.rst b/Doc/library/codecs.rst index 9e1a9c744a..87c2b39f69 100644 --- a/Doc/library/codecs.rst +++ b/Doc/library/codecs.rst @@ -1194,7 +1194,9 @@ The following codecs provide bytes-to-bytes mappings. | Codec | Aliases | Purpose | +====================+===========================+===========================+ | base64_codec | base64, base-64 | Convert operand to MIME | -| | | base64 | +| | | base64 (the result always | +| | | includes a trailing | +| | | ``'\n'``) | +--------------------+---------------------------+---------------------------+ | bz2_codec | bz2 | Compress the operand | | | | using bz2 | |
