]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Add the test case provided by Barry Scott for his patch.
authorGuido van Rossum <guido@python.org>
Tue, 15 Jun 1999 18:56:46 +0000 (18:56 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 15 Jun 1999 18:56:46 +0000 (18:56 +0000)
Lib/test/test_rfc822.py

index 798ae2b43c70ce1e2589942dfcb8ec66dcf9a37f..96654f49dc66c676a809beb9929ec4b7ade38839 100644 (file)
@@ -108,3 +108,8 @@ test('''To: "last, first" <userid@foo.net>
 
 test''', [('last, first', 'userid@foo.net'),
           ])
+
+test('''To: (Comment stuff) "Quoted name"@somewhere.com
+
+test''', [('Comment stuff', '"Quoted name"@somewhere.com'),
+          ])