diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-08-10 07:00:33 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-08-10 07:00:33 (GMT) |
commit | 83545f1c76076f52a6d6797c3ee059748edc5a25 (patch) | |
tree | da8b97c286b7a3f9784095b49d54e37169a7aafe /Lib/test/test_email | |
parent | 306c3dd6f5984894ced8f8cc1145b42606233c40 (diff) | |
parent | 540f0451d282181449ae42b9325764a690bd6162 (diff) | |
download | cpython-83545f1c76076f52a6d6797c3ee059748edc5a25.zip cpython-83545f1c76076f52a6d6797c3ee059748edc5a25.tar.gz cpython-83545f1c76076f52a6d6797c3ee059748edc5a25.tar.bz2 |
Merge ISO-8859 fixes from 3.5
Diffstat (limited to 'Lib/test/test_email')
-rw-r--r-- | Lib/test/test_email/test_email.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_email/test_email.py b/Lib/test/test_email/test_email.py index af3fb85..8a7e06e 100644 --- a/Lib/test/test_email/test_email.py +++ b/Lib/test/test_email/test_email.py @@ -2302,9 +2302,9 @@ Re: =?mac-iceland?q?r=8Aksm=9Arg=8Cs?= baz foo bar =?mac-iceland?q?r=8Aksm?= def test_rfc2047_Q_invalid_digits(self): # issue 10004. - s = '=?iso-8659-1?Q?andr=e9=zz?=' + s = '=?iso-8859-1?Q?andr=e9=zz?=' self.assertEqual(decode_header(s), - [(b'andr\xe9=zz', 'iso-8659-1')]) + [(b'andr\xe9=zz', 'iso-8859-1')]) def test_rfc2047_rfc2047_1(self): # 1st testcase at end of rfc2047 |