]> granicus.if.org Git - python/commitdiff
Fix closes issue12683 - urljoin to work with relative join of svn scheme.
authorSenthil Kumaran <senthil@uthcode.com>
Wed, 3 Aug 2011 10:37:22 +0000 (18:37 +0800)
committerSenthil Kumaran <senthil@uthcode.com>
Wed, 3 Aug 2011 10:37:22 +0000 (18:37 +0800)
Lib/test/test_urlparse.py
Lib/urllib/parse.py
Misc/NEWS

index 72f37769e275075cb4fa9f39a53613dad60df195..af200d55e32f1607d0de6382d5d26add581dce3e 100644 (file)
@@ -371,6 +371,8 @@ class UrlParseTestCase(unittest.TestCase):
         self.checkJoin('http:///', '..','http:///')
         self.checkJoin('', 'http://a/b/c/g?y/./x','http://a/b/c/g?y/./x')
         self.checkJoin('', 'http://a/./g', 'http://a/./g')
+        self.checkJoin('svn://pathtorepo/dir1', 'dir2', 'svn://pathtorepo/dir2')
+        self.checkJoin('svn://pathtorepo/dir1', 'dir2', 'svn://pathtorepo/dir2')
 
     def test_RFC2732(self):
         str_cases = [
index 45ae202d5c630b74a7a49f150ec1df1995bc62aa..01067ae6ac015fe2d229262601c782930bfd4cfc 100644 (file)
@@ -38,7 +38,8 @@ __all__ = ["urlparse", "urlunparse", "urljoin", "urldefrag",
 # A classification of schemes ('' means apply by default)
 uses_relative = ['ftp', 'http', 'gopher', 'nntp', 'imap',
                  'wais', 'file', 'https', 'shttp', 'mms',
-                 'prospero', 'rtsp', 'rtspu', '', 'sftp']
+                 'prospero', 'rtsp', 'rtspu', '', 'sftp',
+                 'svn', 'svn+ssh']
 uses_netloc = ['ftp', 'http', 'gopher', 'nntp', 'telnet',
                'imap', 'wais', 'file', 'mms', 'https', 'shttp',
                'snews', 'prospero', 'rtsp', 'rtspu', 'rsync', '',
index e1060f6e41c11a00d33591785d08de17700b7b9c..abfa83c8bde60271ff6f65dc10392c3216f5a958 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -41,6 +41,9 @@ Core and Builtins
 Library
 -------
 
+- Issue #12683: urlparse updated to include svn as schemes that uses relative
+  paths. (svn from 1.5 onwards support relative path).
+
 - Issues #11104, #8688: Fix the behavior of distutils' sdist command with
   manually-maintained MANIFEST files.