From: Barry Warsaw Date: Sat, 29 Jun 2002 15:23:39 +0000 (+0000) Subject: Another test of long headers. X-Git-Tag: v2.3c1~5160 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=19698174866b8c03848b6ca3a7ea9ce7f0133b91;p=thirdparty%2FPython%2Fcpython.git Another test of long headers. --- diff --git a/Lib/test/data/msg_27.txt b/Lib/test/data/msg_27.txt new file mode 100644 index 000000000000..d0191769d738 --- /dev/null +++ b/Lib/test/data/msg_27.txt @@ -0,0 +1,15 @@ +Return-Path: +Received: by mail.dom.ain (Postfix, from userid 889) + id B9D0AD35DB; Tue, 4 Jun 2002 21:46:59 -0400 (EDT) +Message-ID: <15613.28051.707126.569693@dom.ain> +Date: Tue, 4 Jun 2002 21:46:59 -0400 +MIME-Version: 1.0 +Content-Type: text/plain; charset=us-ascii +Content-Transfer-Encoding: 7bit +Subject: bug demonstration + 12345678911234567892123456789312345678941234567895123456789612345678971234567898112345678911234567892123456789112345678911234567892123456789 + more text +From: aperson@dom.ain (Anne P. Erson) +To: bperson@dom.ain (Barney P. Erson) + +test diff --git a/Lib/test/test_email.py b/Lib/test/test_email.py index efca4787a7cb..14051c2de9b3 100644 --- a/Lib/test/test_email.py +++ b/Lib/test/test_email.py @@ -1143,6 +1143,10 @@ class TestIdempotent(TestEmailBase): msg, text = self._msgobj('msg_02.txt') self._idempotent(msg, text) + def test_long_header(self): + msg, text = self._msgobj('msg_27.txt') + self._idempotent(msg, text) + ## def test_MIME_digest_with_part_headers(self): ## msg, text = self._msgobj('msg_28.txt') ## self._idempotent(msg, text)