From: Guido van Rossum Date: Tue, 15 Jun 1999 18:56:46 +0000 (+0000) Subject: Add the test case provided by Barry Scott for his patch. X-Git-Tag: v1.6a1~1216 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=47ac4e6b4103ab0022737f93f90fa4e739a7de20;p=thirdparty%2FPython%2Fcpython.git Add the test case provided by Barry Scott for his patch. --- diff --git a/Lib/test/test_rfc822.py b/Lib/test/test_rfc822.py index 798ae2b43c70..96654f49dc66 100644 --- a/Lib/test/test_rfc822.py +++ b/Lib/test/test_rfc822.py @@ -108,3 +108,8 @@ test('''To: "last, first" test''', [('last, first', 'userid@foo.net'), ]) + +test('''To: (Comment stuff) "Quoted name"@somewhere.com + +test''', [('Comment stuff', '"Quoted name"@somewhere.com'), + ])