mirror of https://github.com/python/cpython
#4768: store base64 encoded email body parts as text, not binary.
Patch and tests by Forest Bond.
This commit is contained in:
parent
deda8cb835
commit
7da8f06df0
|
@ -29,7 +29,7 @@ def encode_base64(msg):
|
|||
Also, add an appropriate Content-Transfer-Encoding header.
|
||||
"""
|
||||
orig = msg.get_payload()
|
||||
encdata = _bencode(orig)
|
||||
encdata = str(_bencode(orig), 'ascii')
|
||||
msg.set_payload(encdata)
|
||||
msg['Content-Transfer-Encoding'] = 'base64'
|
||||
|
||||
|
|
|
@ -970,7 +970,8 @@ class TestMIMEAudio(unittest.TestCase):
|
|||
|
||||
def test_encoding(self):
|
||||
payload = self._au.get_payload()
|
||||
self.assertEqual(base64.decodebytes(payload), self._audiodata)
|
||||
self.assertEqual(base64.decodebytes(bytes(payload, 'ascii')),
|
||||
self._audiodata)
|
||||
|
||||
def test_checkSetMinor(self):
|
||||
au = MIMEAudio(self._audiodata, 'fish')
|
||||
|
@ -1010,7 +1011,8 @@ class TestMIMEImage(unittest.TestCase):
|
|||
|
||||
def test_encoding(self):
|
||||
payload = self._im.get_payload()
|
||||
self.assertEqual(base64.decodebytes(payload), self._imgdata)
|
||||
self.assertEqual(base64.decodebytes(bytes(payload, 'ascii')),
|
||||
self._imgdata)
|
||||
|
||||
def test_checkSetMinor(self):
|
||||
im = MIMEImage(self._imgdata, 'fish')
|
||||
|
@ -1050,7 +1052,7 @@ class TestMIMEApplication(unittest.TestCase):
|
|||
eq = self.assertEqual
|
||||
bytes = b'\xfa\xfb\xfc\xfd\xfe\xff'
|
||||
msg = MIMEApplication(bytes)
|
||||
eq(msg.get_payload(), b'+vv8/f7/')
|
||||
eq(msg.get_payload(), '+vv8/f7/')
|
||||
eq(msg.get_payload(decode=True), bytes)
|
||||
|
||||
|
||||
|
|
|
@ -83,6 +83,7 @@ Finn Bock
|
|||
Paul Boddie
|
||||
Matthew Boedicker
|
||||
David Bolen
|
||||
Forest Bond
|
||||
Gawain Bolton
|
||||
Gregory Bond
|
||||
Jurjen Bos
|
||||
|
|
Loading…
Reference in New Issue