From: Barry Warsaw Date: Thu, 26 Sep 2002 17:21:53 +0000 (+0000) Subject: test_unicode_error(): Comment this test out, since we still have X-Git-Tag: v2.3c1~3971 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=09f7424f3a46f4b0b5e6b696c0cded44a4f85f77;p=python test_unicode_error(): Comment this test out, since we still have controversy. --- diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py index a63adc87d5..46e1b006c9 100644 --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -2156,14 +2156,14 @@ A very long line that must get split to something other than at the h.append('hello', 'iso-8859-1') eq(h, '=?iso-8859-1?q?hello?=') - def test_unicode_error(self): - raises = self.assertRaises - raises(UnicodeError, Header, u'[P\xf6stal]', 'us-ascii') - raises(UnicodeError, Header, '[P\xf6stal]', 'us-ascii') - h = Header() - raises(UnicodeError, h.append, u'[P\xf6stal]', 'us-ascii') - raises(UnicodeError, h.append, '[P\xf6stal]', 'us-ascii') - raises(UnicodeError, Header, u'\u83ca\u5730\u6642\u592b', 'iso-8859-1') +## def test_unicode_error(self): +## raises = self.assertRaises +## raises(UnicodeError, Header, u'[P\xf6stal]', 'us-ascii') +## raises(UnicodeError, Header, '[P\xf6stal]', 'us-ascii') +## h = Header() +## raises(UnicodeError, h.append, u'[P\xf6stal]', 'us-ascii') +## raises(UnicodeError, h.append, '[P\xf6stal]', 'us-ascii') +## raises(UnicodeError, Header, u'\u83ca\u5730\u6642\u592b', 'iso-8859-1')