diff options
author | Barry Warsaw <barry@python.org> | 2002-10-01 00:05:24 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2002-10-01 00:05:24 (GMT) |
commit | 12272a2f22a3a01c9a5e8d70b643fe6200209c1c (patch) | |
tree | aeb9ffb7bedb8d23b63e5295a340132907e22d20 /Lib/email/Encoders.py | |
parent | 48330687f36bb452e17480e78bf3ca17f9728e87 (diff) | |
download | cpython-12272a2f22a3a01c9a5e8d70b643fe6200209c1c.zip cpython-12272a2f22a3a01c9a5e8d70b643fe6200209c1c.tar.gz cpython-12272a2f22a3a01c9a5e8d70b643fe6200209c1c.tar.bz2 |
Docstring consistency with the updated .tex files.
Diffstat (limited to 'Lib/email/Encoders.py')
-rw-r--r-- | Lib/email/Encoders.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/email/Encoders.py b/Lib/email/Encoders.py index c369a24..5460fdb 100644 --- a/Lib/email/Encoders.py +++ b/Lib/email/Encoders.py @@ -51,7 +51,7 @@ def _bencode(s): def encode_base64(msg): """Encode the message's payload in Base64. - Also, add an appropriate Content-Transfer-Encoding: header. + Also, add an appropriate Content-Transfer-Encoding header. """ orig = msg.get_payload() encdata = _bencode(orig) @@ -61,9 +61,9 @@ def encode_base64(msg): def encode_quopri(msg): - """Encode the message's payload in Quoted-Printable. + """Encode the message's payload in quoted-printable. - Also, add an appropriate Content-Transfer-Encoding: header. + Also, add an appropriate Content-Transfer-Encoding header. """ orig = msg.get_payload() encdata = _qencode(orig) @@ -73,7 +73,7 @@ def encode_quopri(msg): def encode_7or8bit(msg): - """Set the Content-Transfer-Encoding: header to 7bit or 8bit.""" + """Set the Content-Transfer-Encoding header to 7bit or 8bit.""" orig = msg.get_payload() if orig is None: # There's no payload. For backwards compatibility we use 7bit |