From c79ffb022f5ddba0dd88fff877b69d10e8690edd Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Thu, 6 Mar 2003 16:11:14 +0000 Subject: test_whitespace_eater_unicode(): Test of the last outstanding bug in SF # 640110. --- Lib/email/test/test_email.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py index 542ddcd..50287af 100644 --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -1207,6 +1207,14 @@ class TestRFC2047(unittest.TestCase): """Re: =?mac-iceland?q?r=8Aksm=9Arg=8Cs?= baz foo bar =?mac-iceland?q?r=8Aksm=9Arg=8Cs?=""") + def test_whitespace_eater_unicode(self): + eq = self.assertEqual + s = '=?ISO-8859-1?Q?Andr=E9?= Pirard ' + dh = decode_header(s) + eq(dh, [('Andr\xe9', 'iso-8859-1'), ('Pirard ', None)]) + hu = unicode(make_header(dh)).encode('latin-1') + eq(hu, 'Andr\xe9 Pirard ') + # Test the MIMEMessage class -- cgit v0.12