mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
First batch of signature documentation changes; using default argument syntax where applicable.
This commit is contained in:
parent
acc9dcc688
commit
b868a66ccb
7 changed files with 19 additions and 18 deletions
|
@ -49,14 +49,14 @@ The :mod:`binascii` module defines the following functions:
|
|||
should be at most 57 to adhere to the base64 standard.
|
||||
|
||||
|
||||
.. function:: a2b_qp(string[, header])
|
||||
.. function:: a2b_qp(string, header=False)
|
||||
|
||||
Convert a block of quoted-printable data back to binary and return the binary
|
||||
data. More than one line may be passed at a time. If the optional argument
|
||||
*header* is present and true, underscores will be decoded as spaces.
|
||||
|
||||
|
||||
.. function:: b2a_qp(data[, quotetabs, istext, header])
|
||||
.. function:: b2a_qp(data, quotetabs=False, istext=True, header=False)
|
||||
|
||||
Convert binary data to a line(s) of ASCII characters in quoted-printable
|
||||
encoding. The return value is the converted line(s). If the optional argument
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue