summaryrefslogtreecommitdiffstats
path: root/Doc/library/binascii.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-04-02 02:56:10 (GMT)
committerGeorg Brandl <georg@python.org>2009-04-02 02:56:10 (GMT)
commitb868a66ccb9cde89d934a896fe3c5629ed007d42 (patch)
tree93830f2ea5ec9dfe170e2d3139429933917ce7ed /Doc/library/binascii.rst
parentacc9dcc6888d310ec084925d84441779cce0d03d (diff)
downloadcpython-b868a66ccb9cde89d934a896fe3c5629ed007d42.zip
cpython-b868a66ccb9cde89d934a896fe3c5629ed007d42.tar.gz
cpython-b868a66ccb9cde89d934a896fe3c5629ed007d42.tar.bz2
First batch of signature documentation changes; using default argument syntax where applicable.
Diffstat (limited to 'Doc/library/binascii.rst')
-rw-r--r--Doc/library/binascii.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/binascii.rst b/Doc/library/binascii.rst
index 83dcb67..dffdd81 100644
--- a/Doc/library/binascii.rst
+++ b/Doc/library/binascii.rst
@@ -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