From 59391207c65aaae08179d299252a93e05056cebb Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Tue, 7 May 2013 11:14:27 +0300 Subject: [PATCH] #17714: document that the base64 codec adds a trailing newline. --- Doc/library/codecs.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Doc/library/codecs.rst b/Doc/library/codecs.rst index ce850f6c0677..460af13d33e1 100644 --- a/Doc/library/codecs.rst +++ b/Doc/library/codecs.rst @@ -1113,7 +1113,9 @@ the table. | Codec | Aliases | Operand type | Purpose | +====================+===========================+================+===========================+ | base64_codec | base64, base-64 | byte string | Convert operand to MIME | -| | | | base64 | +| | | | base64 (the result always | +| | | | includes a trailing | +| | | | ``'\n'``) | +--------------------+---------------------------+----------------+---------------------------+ | bz2_codec | bz2 | byte string | Compress the operand | | | | | using bz2 | -- 2.47.3