[Python-checkins] python/dist/src/Lib urlparse.py,1.47,1.48

fdrake@users.sourceforge.net fdrake at users.sourceforge.net
Fri Jul 29 17:56:34 CEST 2005


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

Modified Files:
	urlparse.py 
Log Message:
add support for svn: and svn+ssh: URL schemes to urlparse

Index: urlparse.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/urlparse.py,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -d -r1.47 -r1.48
--- urlparse.py	9 Jan 2005 15:29:10 -0000	1.47
+++ urlparse.py	29 Jul 2005 15:56:32 -0000	1.48
@@ -13,7 +13,8 @@
                                'prospero', 'rtsp', 'rtspu', '']
 uses_netloc = ['ftp', 'http', 'gopher', 'nntp', 'telnet',
                              'imap', 'wais', 'file', 'mms', 'https', 'shttp',
-                             'snews', 'prospero', 'rtsp', 'rtspu', 'rsync', '']
+                             'snews', 'prospero', 'rtsp', 'rtspu', 'rsync', '',
+                             'svn', 'svn+ssh']
 non_hierarchical = ['gopher', 'hdl', 'mailto', 'news',
                                   'telnet', 'wais', 'imap', 'snews', 'sip']
 uses_params = ['ftp', 'hdl', 'prospero', 'http', 'imap',



More information about the Python-checkins mailing list