From 7c5b9d1fa95df002801b0ae810d2b58e33a34db6 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Mon, 12 Jul 1999 18:47:00 +0000 Subject: [PATCH] added a test for "To: :" patch --- Lib/test/test_rfc822.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Lib/test/test_rfc822.py b/Lib/test/test_rfc822.py index 96654f49dc..0d4c66f880 100644 --- a/Lib/test/test_rfc822.py +++ b/Lib/test/test_rfc822.py @@ -113,3 +113,10 @@ test('''To: (Comment stuff) "Quoted name"@somewhere.com test''', [('Comment stuff', '"Quoted name"@somewhere.com'), ]) + +test('''To: : +Cc: goit@lip.com +Date: Wed, 13 Jan 1999 23:57:35 -0500 + +test''', [('', 'goit@lip.com')]) + -- 2.40.0