diff options
author | Barry Warsaw <barry@python.org> | 2003-03-07 15:58:51 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2003-03-07 15:58:51 (GMT) |
commit | bf7e241397165fdbe68c5119912bf64a52f0e3a0 (patch) | |
tree | 7e0926aa43f76ce7b2a58ae4647586bf0fa5065d /Lib/email | |
parent | eabafebfbcf645a48990e89d7fbe3fbdfad7c4c1 (diff) | |
download | cpython-bf7e241397165fdbe68c5119912bf64a52f0e3a0.zip cpython-bf7e241397165fdbe68c5119912bf64a52f0e3a0.tar.gz cpython-bf7e241397165fdbe68c5119912bf64a52f0e3a0.tar.bz2 |
whitespace normalization
Diffstat (limited to 'Lib/email')
-rw-r--r-- | Lib/email/test/test_email.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py index 6320cd5..ff0caa3 100644 --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -772,11 +772,11 @@ This is an example of string which has almost the limit of header length. msg['Received-2'] = h self.assertEqual(msg.as_string(), """\ Received-1: from FOO.TLD (vizworld.acl.foo.tld [123.452.678.9]) by - hrothgar.la.mastaler.com (tmda-ofmipd) with ESMTP; - Wed, 05 Mar 2003 18:10:18 -0700 +\throthgar.la.mastaler.com (tmda-ofmipd) with ESMTP; +\tWed, 05 Mar 2003 18:10:18 -0700 Received-2: from FOO.TLD (vizworld.acl.foo.tld [123.452.678.9]) by - hrothgar.la.mastaler.com (tmda-ofmipd) with ESMTP; - Wed, 05 Mar 2003 18:10:18 -0700 +\throthgar.la.mastaler.com (tmda-ofmipd) with ESMTP; +\tWed, 05 Mar 2003 18:10:18 -0700 """) @@ -788,9 +788,9 @@ Received-2: from FOO.TLD (vizworld.acl.foo.tld [123.452.678.9]) by msg['Received-2'] = h self.assertEqual(msg.as_string(), """\ Received-1: <15975.17901.207240.414604@sgigritzmann1.mathematik.tu-muenchen.de> - (David Bremner's message of "Thu, 6 Mar 2003 13:58:21 +0100") +\t(David Bremner's message of "Thu, 6 Mar 2003 13:58:21 +0100") Received-2: <15975.17901.207240.414604@sgigritzmann1.mathematik.tu-muenchen.de> - (David Bremner's message of "Thu, 6 Mar 2003 13:58:21 +0100") +\t(David Bremner's message of "Thu, 6 Mar 2003 13:58:21 +0100") """) |