[Python-checkins] python/dist/src/Lib urlparse.py,1.44,1.45
bcannon at users.sourceforge.net
bcannon at users.sourceforge.net
Tue Jun 29 00:02:57 EDT 2004
Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14186/Lib
Modified Files:
urlparse.py
Log Message:
rsync is now a recognized protocol that uses "netloc" (i.e. specifies a network
location) in its addressing.
Closes bug #981299.
Index: urlparse.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/urlparse.py,v
retrieving revision 1.44
retrieving revision 1.45
diff -C2 -d -r1.44 -r1.45
*** urlparse.py 7 May 2004 05:50:35 -0000 1.44
--- urlparse.py 29 Jun 2004 04:02:39 -0000 1.45
***************
*** 14,18 ****
uses_netloc = ['ftp', 'http', 'gopher', 'nntp', 'telnet',
'imap', 'wais', 'file', 'mms', 'https', 'shttp',
! 'snews', 'prospero', 'rtsp', 'rtspu', '']
non_hierarchical = ['gopher', 'hdl', 'mailto', 'news',
'telnet', 'wais', 'imap', 'snews', 'sip']
--- 14,18 ----
uses_netloc = ['ftp', 'http', 'gopher', 'nntp', 'telnet',
'imap', 'wais', 'file', 'mms', 'https', 'shttp',
! 'snews', 'prospero', 'rtsp', 'rtspu', 'rsync', '']
non_hierarchical = ['gopher', 'hdl', 'mailto', 'news',
'telnet', 'wais', 'imap', 'snews', 'sip']
More information about the Python-checkins
mailing list