[Python-checkins] CVS: python/dist/src/Lib/test test_rfc822.py,1.5,1.6

Barry Warsaw python-dev@python.org
Mon, 25 Sep 2000 08:09:31 -0700


Update of /cvsroot/python/python/dist/src/Lib/test
In directory slayer.i.sourceforge.net:/tmp/cvs-serv5271

Modified Files:
	test_rfc822.py 
Log Message:
Add a test for SF bug #110621; stripping square brackets off of
addresses with domain literals.


Index: test_rfc822.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_rfc822.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** test_rfc822.py	1999/07/12 18:47:00	1.5
--- test_rfc822.py	2000/09/25 15:09:28	1.6
***************
*** 121,122 ****
--- 121,126 ----
  test''', [('', 'goit@lip.com')])
  
+ 
+ test('''To: guido@[132.151.1.21]
+ 
+ foo''', [('', 'guido@[132.151.1.21]')])