diff options
author | Barry Warsaw <barry@python.org> | 2002-09-26 17:21:53 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2002-09-26 17:21:53 (GMT) |
commit | 09f7424f3a46f4b0b5e6b696c0cded44a4f85f77 (patch) | |
tree | 54a8830d44ea55235c637a363a4af4a2c8c39969 /Lib/email | |
parent | 9c74569ec9c694dbd1622b565448165ee486d3bc (diff) | |
download | cpython-09f7424f3a46f4b0b5e6b696c0cded44a4f85f77.zip cpython-09f7424f3a46f4b0b5e6b696c0cded44a4f85f77.tar.gz cpython-09f7424f3a46f4b0b5e6b696c0cded44a4f85f77.tar.bz2 |
test_unicode_error(): Comment this test out, since we still have
controversy.
Diffstat (limited to 'Lib/email')
-rw-r--r-- | Lib/email/test/test_email.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py index a63adc8..46e1b00 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') |