Docstring consistency with the updated .tex files.

This commit is contained in:
Barry Warsaw 2002-10-01 00:05:24 +00:00
parent 48330687f3
commit 12272a2f22
2 changed files with 17 additions and 17 deletions

View file

@ -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