[Python-checkins] python/dist/src/Lib urlparse.py, 1.45.4.1, 1.45.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
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26913/Lib

Modified Files:
      Tag: release24-maint
	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: urlparse.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/urlparse.py,v
retrieving revision 1.45.4.1
retrieving revision 1.45.4.2
diff -u -d -r1.45.4.1 -r1.45.4.2
--- urlparse.py	9 Jan 2005 15:32:37 -0000	1.45.4.1
+++ urlparse.py	29 Jul 2005 15:57:53 -0000	1.45.4.2
@@ -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