diff options
author | Fred Drake <fdrake@acm.org> | 2000-10-23 17:30:23 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-10-23 17:30:23 (GMT) |
commit | 098b55ab4427aa546a06973cecd5e18080b546fd (patch) | |
tree | e967593a1be16d39273683cd905daeb27558f970 /Lib/test/test_rfc822.py | |
parent | 004d5e6880940ddbb38460986ac62ee0f1bae97d (diff) | |
download | cpython-098b55ab4427aa546a06973cecd5e18080b546fd.zip cpython-098b55ab4427aa546a06973cecd5e18080b546fd.tar.gz cpython-098b55ab4427aa546a06973cecd5e18080b546fd.tar.bz2 |
Make reindent happy, but not in the way it planned!
Diffstat (limited to 'Lib/test/test_rfc822.py')
-rw-r--r-- | Lib/test/test_rfc822.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_rfc822.py b/Lib/test/test_rfc822.py index 36e7a51..967b91b 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 <guido@CNRI.Reston.VA.US> To: "Guido van - : Rossum" <guido@python.org> +\t : Rossum" <guido@python.org> Subject: test2 test2 -''', [('Guido van\n : Rossum', 'guido@python.org')]) +''', [('Guido van\n\t : Rossum', 'guido@python.org')]) test('''From: Barry <bwarsaw@python.org To: guido@python.org (Guido: the Barbarian) |