From: Brett Cannon Date: Tue, 29 Jun 2004 04:02:40 +0000 (+0000) Subject: rsync is now a recognized protocol that uses "netloc" (i.e. specifies a network X-Git-Tag: v2.4a1~103 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fbac294d590be0b02a38b68fc5680febb060d7c5;p=thirdparty%2FPython%2Fcpython.git rsync is now a recognized protocol that uses "netloc" (i.e. specifies a network location) in its addressing. Closes bug #981299. --- diff --git a/Lib/urlparse.py b/Lib/urlparse.py index 2f1965aca7d9..37dd36265b85 100644 --- a/Lib/urlparse.py +++ b/Lib/urlparse.py @@ -13,7 +13,7 @@ uses_relative = ['ftp', 'http', 'gopher', 'nntp', 'imap', 'prospero', 'rtsp', 'rtspu', ''] uses_netloc = ['ftp', 'http', 'gopher', 'nntp', 'telnet', 'imap', 'wais', 'file', 'mms', 'https', 'shttp', - 'snews', 'prospero', 'rtsp', 'rtspu', ''] + 'snews', 'prospero', 'rtsp', 'rtspu', 'rsync', ''] non_hierarchical = ['gopher', 'hdl', 'mailto', 'news', 'telnet', 'wais', 'imap', 'snews', 'sip'] uses_params = ['ftp', 'hdl', 'prospero', 'http', 'imap', diff --git a/Misc/NEWS b/Misc/NEWS index 138afe279324..414b6e668bf1 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -350,6 +350,9 @@ Extension modules Library ------- +- Bug #981299: rsync is now a recognized protocol that uses a "netloc" portion + of a URL. + - Bug #919012: shutil.move() will not try to move a directory into itself. Thanks Johannes Gijsbers.