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

montanaro@users.sourceforge.net montanaro@users.sourceforge.net
Mon, 06 Jan 2003 12:27:05 -0800


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

Modified Files:
	test_urlparse.py 
Log Message:
* add mms (windows media) as another scheme
* reformat schemes to 80 columns


Index: test_urlparse.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_urlparse.py,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** test_urlparse.py	6 Jan 2003 06:58:31 -0000	1.10
--- test_urlparse.py	6 Jan 2003 20:27:03 -0000	1.11
***************
*** 29,32 ****
--- 29,35 ----
               ('imap', 'mail.python.org', '/mbox1', '', '', ''),
               ('imap', 'mail.python.org', '/mbox1', '', '')),
+             ('mms://wms.sys.hinet.net/cts/Drama/09006251100.asf',
+              ('mms', 'wms.sys.hinet.net', '/cts/Drama/09006251100.asf', '', '', ''),
+              ('mms', 'wms.sys.hinet.net', '/cts/Drama/09006251100.asf', '', '')),
              ]:
              result = urlparse.urlparse(url)