summaryrefslogtreecommitdiffstats
path: root/Lib/email
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-06-27 22:37:00 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-06-27 22:37:00 (GMT)
commitf6069f9f22a81a0b9f81a1cc43fb0896e70f5379 (patch)
tree45861636b642545f0c6bf871189564346392ab97 /Lib/email
parentc7f75798555f6f371cfd5db342015c626402ddce (diff)
downloadcpython-f6069f9f22a81a0b9f81a1cc43fb0896e70f5379.zip
cpython-f6069f9f22a81a0b9f81a1cc43fb0896e70f5379.tar.gz
cpython-f6069f9f22a81a0b9f81a1cc43fb0896e70f5379.tar.bz2
#14360: make encoders.encode_quopri work.
There were no tests for the encoders module. encode_base64 worked because it is the default and so got tested implicitly elsewhere, and we use encode_7or8bit internally, so that worked, too. I previously fixed encode_noop, so this fix means that everythign in the encoders module now works, hopefully correctly. Also added an explicit test for encode_base64.
Diffstat (limited to 'Lib/email')
-rw-r--r--Lib/email/encoders.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/Lib/email/encoders.py b/Lib/email/encoders.py
index 82a28cf..a0d062a 100644
--- a/Lib/email/encoders.py
+++ b/Lib/email/encoders.py
@@ -20,7 +20,7 @@ from quopri import encodestring as _encodestring
def _qencode(s):
enc = _encodestring(s, quotetabs=True)
# Must encode spaces, which quopri.encodestring() doesn't do
- return enc.replace(' ', '=20')
+ return enc.replace(b' ', b'=20')
def encode_base64(msg):
@@ -41,8 +41,12 @@ def encode_quopri(msg):
Also, add an appropriate Content-Transfer-Encoding header.
"""
orig = msg.get_payload()
+ if isinstance(orig, str):
+ # If it is a string, the model data may have binary data encoded in via
+ # surrogateescape. Convert back to bytes so we can CTE encode it.
+ orig = orig.encode('ascii', 'surrogateescape')
encdata = _qencode(orig)
- msg.set_payload(encdata)
+ msg.set_payload(encdata.decode('ascii', 'surrogateescape'))
msg['Content-Transfer-Encoding'] = 'quoted-printable'