[Python-checkins] python/dist/src/Lib/test test_urlparse.py, 1.13.4.1, 1.13.4.2

fdrake@users.sourceforge.net fdrake at users.sourceforge.net
Fri Jul 29 17:58:02 CEST 2005


Update of /cvsroot/python/python/dist/src/Lib/test
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26913/Lib/test

Modified Files:
      Tag: release24-maint
	test_urlparse.py 
Log Message:
add support for svn: and svn+ssh: URL schemes to urlparse
(backported from trunk urlparse.py 1.48, test_urlparse.py 1.15)


Index: test_urlparse.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_urlparse.py,v
retrieving revision 1.13.4.1
retrieving revision 1.13.4.2
diff -u -d -r1.13.4.1 -r1.13.4.2
--- test_urlparse.py	9 Jan 2005 15:32:37 -0000	1.13.4.1
+++ test_urlparse.py	29 Jul 2005 15:57:59 -0000	1.13.4.2
@@ -35,6 +35,11 @@
               '', '', ''),
              ('mms', 'wms.sys.hinet.net', '/cts/Drama/09006251100.asf',
               '', '')),
+            ('svn+ssh://svn.zope.org/repos/main/ZConfig/trunk/',
+             ('svn+ssh', 'svn.zope.org', '/repos/main/ZConfig/trunk/',
+              '', '', ''),
+             ('svn+ssh', 'svn.zope.org', '/repos/main/ZConfig/trunk/',
+              '', ''))
             ]
         for url, parsed, split in testcases:
             self.checkRoundtrips(url, parsed, split)



More information about the Python-checkins mailing list