diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-08-09 23:44:17 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-09 23:44:17 (GMT) |
commit | a3185da26f8c818907c297d92c533deaa96f40fd (patch) | |
tree | 31006955be1e91e29adbb8a013a1e29ed92c2924 /Misc | |
parent | 8ece98a7e418c3c68a4c61bc47a2d0931b59a889 (diff) | |
download | cpython-a3185da26f8c818907c297d92c533deaa96f40fd.zip cpython-a3185da26f8c818907c297d92c533deaa96f40fd.tar.gz cpython-a3185da26f8c818907c297d92c533deaa96f40fd.tar.bz2 |
bpo-41402: Fix email ContentManager calling .encode() on bytes (GH-21631)
(cherry picked from commit b33186bc43bb5aaf652dd9d093a08fdde796d499)
Co-authored-by: Johannes Reiff <mail@jreiff.de>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-07-26-18-17-30.bpo-41402.YRkVkp.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-07-26-18-17-30.bpo-41402.YRkVkp.rst b/Misc/NEWS.d/next/Library/2020-07-26-18-17-30.bpo-41402.YRkVkp.rst new file mode 100644 index 0000000..45585a4 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-07-26-18-17-30.bpo-41402.YRkVkp.rst @@ -0,0 +1 @@ +Fix :meth:`email.message.EmailMessage.set_content` when called with binary data and ``7bit`` content transfer encoding. |