[Python-checkins] python/dist/src/Lib/test test_urlparse.py,1.9,1.10

nnorwitz@users.sourceforge.net nnorwitz@users.sourceforge.net
Sun, 05 Jan 2003 22:58:33 -0800


Update of /cvsroot/python/python/dist/src/Lib/test
In directory sc8-pr-cvs1:/tmp/cvs-serv4814/Lib/test

Modified Files:
	test_urlparse.py 
Log Message:
SF feature #618024, urlparse fails on imap://

Index: test_urlparse.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_urlparse.py,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** test_urlparse.py	16 Oct 2002 21:02:36 -0000	1.9
--- test_urlparse.py	6 Jan 2003 06:58:31 -0000	1.10
***************
*** 26,29 ****
--- 26,32 ----
               ('file', '', '/tmp/junk.txt', '', '', ''),
               ('file', '', '/tmp/junk.txt', '', '')),
+             ('imap://mail.python.org/mbox1',
+              ('imap', 'mail.python.org', '/mbox1', '', '', ''),
+              ('imap', 'mail.python.org', '/mbox1', '', '')),
              ]:
              result = urlparse.urlparse(url)