From: Fred Drake Date: Mon, 23 Oct 2000 17:30:23 +0000 (+0000) Subject: Make reindent happy, but not in the way it planned! X-Git-Tag: v2.1a1~839 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=098b55ab4427aa546a06973cecd5e18080b546fd;p=python Make reindent happy, but not in the way it planned! --- diff --git a/Lib/test/test_rfc822.py b/Lib/test/test_rfc822.py index 36e7a51237..967b91b70d 100644 --- a/Lib/test/test_rfc822.py +++ b/Lib/test/test_rfc822.py @@ -11,7 +11,7 @@ def test(msg, results): fp.seek(0) m = rfc822.Message(fp) i = 0 - + for n, a in m.getaddrlist('to') + m.getaddrlist('cc'): if verbose: print 'name:', repr(n), 'addr:', repr(a) @@ -47,11 +47,11 @@ def test(msg, results): test('''Date: Wed, 13 Jan 1999 23:57:35 -0500 From: Guido van Rossum To: "Guido van - : Rossum" +\t : Rossum" Subject: test2 test2 -''', [('Guido van\n : Rossum', 'guido@python.org')]) +''', [('Guido van\n\t : Rossum', 'guido@python.org')]) test('''From: Barry