diff options
author | Barry Warsaw <barry@python.org> | 2007-08-30 14:28:55 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2007-08-30 14:28:55 (GMT) |
commit | 2cc1f6d95b11f017f04921ea33a5cfc369e32e97 (patch) | |
tree | 0af4321c600f82fed75258c753ac71e1ed6588f0 /Lib/email/quoprimime.py | |
parent | 5a23cc5a01458c74f8c849f41c2aea0151716668 (diff) | |
download | cpython-2cc1f6d95b11f017f04921ea33a5cfc369e32e97.zip cpython-2cc1f6d95b11f017f04921ea33a5cfc369e32e97.tar.gz cpython-2cc1f6d95b11f017f04921ea33a5cfc369e32e97.tar.bz2 |
More email package related repairs. This fixes smtplib's import and use of
email.base64mime, but test_smtplib still has failures for me. They are
timeout errors so think they're more related to my current wacky network setup
than bugs remaining in the code related to the email package.
This also r57693 that got clobbered with the sandbox sync, and fixes a couple
of other minor problems that cropped up. I will kill the sandbox branch next.
The email package now has 11F/11E.
Diffstat (limited to 'Lib/email/quoprimime.py')
-rw-r--r-- | Lib/email/quoprimime.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/email/quoprimime.py b/Lib/email/quoprimime.py index 1301e0b..e59479c 100644 --- a/Lib/email/quoprimime.py +++ b/Lib/email/quoprimime.py @@ -58,7 +58,7 @@ _QUOPRI_HEADER_MAP = dict((c, '=%02X' % c) for c in range(256)) _QUOPRI_BODY_MAP = _QUOPRI_HEADER_MAP.copy() # Safe header bytes which need no encoding. -for c in b'-!*+/' + bytes(ascii_letters, 'ascii') + bytes(digits, 'ascii'): +for c in b'-!*+/' + ascii_letters.encode('ascii') + digits.encode('ascii'): _QUOPRI_HEADER_MAP[c] = chr(c) # Headers have one other special encoding; spaces become underscores. _QUOPRI_HEADER_MAP[ord(' ')] = '_' |