diff options
author | R David Murray <rdmurray@bitdance.com> | 2014-02-07 17:46:17 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2014-02-07 17:46:17 (GMT) |
commit | 15a693a6f8f5986c512557747112331ceb5c0b8c (patch) | |
tree | e85910ccacdbd73c4aabb05b2b2bef3c2311c92d /Lib/email/charset.py | |
parent | 27e9de669be928b09d71fdd31f84da7b86f9a1fc (diff) | |
download | cpython-15a693a6f8f5986c512557747112331ceb5c0b8c.zip cpython-15a693a6f8f5986c512557747112331ceb5c0b8c.tar.gz cpython-15a693a6f8f5986c512557747112331ceb5c0b8c.tar.bz2 |
#20531: Apply the 3.3 version of the #19063 fix.
So passing unicode to set_payload works again (but still doesn't
do what you want when the message is serialized).
Diffstat (limited to 'Lib/email/charset.py')
-rw-r--r-- | Lib/email/charset.py | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/Lib/email/charset.py b/Lib/email/charset.py index 892bab5..e999472 100644 --- a/Lib/email/charset.py +++ b/Lib/email/charset.py @@ -386,7 +386,8 @@ class Charset: string using the ascii codec produces the correct string version of the content. """ - # 7bit/8bit encodings return the string unchanged (module conversions) + if not string: + return string if self.body_encoding is BASE64: if isinstance(string, str): string = string.encode(self.output_charset) @@ -398,13 +399,9 @@ class Charset: # character set, then, we must turn it into pseudo bytes via the # latin1 charset, which will encode any byte as a single code point # between 0 and 255, which is what body_encode is expecting. - # - # Note that this clause doesn't handle the case of a _payload that - # is already bytes. It never did, and the semantics of _payload - # being bytes has never been nailed down, so fixing that is a - # longer term TODO. if isinstance(string, str): - string = string.encode(self.output_charset).decode('latin1') + string = string.encode(self.output_charset) + string = string.decode('latin1') return email.quoprimime.body_encode(string) else: if isinstance(string, str): |