mirror of
https://github.com/python/cpython.git
synced 2025-11-07 21:29:26 +00:00
Merge: #25495: Clarify b2a_base64 documentation vis 57 bytes.
This commit is contained in:
commit
51a4b22f99
1 changed files with 6 additions and 3 deletions
|
|
@ -55,8 +55,10 @@ The :mod:`binascii` module defines the following functions:
|
||||||
.. function:: b2a_base64(data)
|
.. function:: b2a_base64(data)
|
||||||
|
|
||||||
Convert binary data to a line of ASCII characters in base64 coding. The return
|
Convert binary data to a line of ASCII characters in base64 coding. The return
|
||||||
value is the converted line, including a newline char. The length of *data*
|
value is the converted line, including a newline char. The newline is
|
||||||
should be at most 57 to adhere to the base64 standard.
|
added because the original use case for this function was to feed it a
|
||||||
|
series of 57 byte input lines to get output lines that conform to the
|
||||||
|
MIME-base64 standard. Otherwise the output conforms to :rfc:`3548`.
|
||||||
|
|
||||||
|
|
||||||
.. function:: a2b_qp(data, header=False)
|
.. function:: a2b_qp(data, header=False)
|
||||||
|
|
@ -167,7 +169,8 @@ The :mod:`binascii` module defines the following functions:
|
||||||
.. seealso::
|
.. seealso::
|
||||||
|
|
||||||
Module :mod:`base64`
|
Module :mod:`base64`
|
||||||
Support for base64 encoding used in MIME email messages.
|
Support for RFC compliant base64-style encoding in base 16, 32, 64,
|
||||||
|
and 85.
|
||||||
|
|
||||||
Module :mod:`binhex`
|
Module :mod:`binhex`
|
||||||
Support for the binhex format used on the Macintosh.
|
Support for the binhex format used on the Macintosh.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue