diff options
author | R David Murray <rdmurray@bitdance.com> | 2016-09-09 15:00:09 -0400 |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2016-09-09 15:00:09 -0400 |
commit | 77452dc9a5481ee9973435b02d6aab5a99781f7a (patch) | |
tree | 6d50542e4eda918cde2f7d1362ae1e305f84491b /Lib/email/contentmanager.py | |
parent | c49adb3573aba3c2378dd2970416b60da7b9f8e2 (diff) | |
download | cpython-77452dc9a5481ee9973435b02d6aab5a99781f7a.tar.gz |
#28047: Fix calculation of base64 line length.
This is buggy in the old email code as well, but it doesn't affect anything
there because only the default line length is ever used there.
Diffstat (limited to 'Lib/email/contentmanager.py')
-rw-r--r-- | Lib/email/contentmanager.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Lib/email/contentmanager.py b/Lib/email/contentmanager.py index d3636529b6..b98ce27184 100644 --- a/Lib/email/contentmanager.py +++ b/Lib/email/contentmanager.py @@ -126,12 +126,13 @@ def _finalize_set(msg, disposition, filename, cid, params): msg.set_param(key, value) -# XXX: This is a cleaned-up version of base64mime.body_encode. It would -# be nice to drop both this and quoprimime.body_encode in favor of -# enhanced binascii routines that accepted a max_line_length parameter. +# XXX: This is a cleaned-up version of base64mime.body_encode (including a bug +# fix in the calculation of unencoded_bytes_per_line). It would be nice to +# drop both this and quoprimime.body_encode in favor of enhanced binascii +# routines that accepted a max_line_length parameter. def _encode_base64(data, max_line_length): encoded_lines = [] - unencoded_bytes_per_line = max_line_length * 3 // 4 + unencoded_bytes_per_line = max_line_length // 4 * 3 for i in range(0, len(data), unencoded_bytes_per_line): thisline = data[i:i+unencoded_bytes_per_line] encoded_lines.append(binascii.b2a_base64(thisline).decode('ascii')) |