[Python-Dev] cpython (3.2): Fix closes issue12683 (original) (raw)

[Python-Dev] cpython (3.2): Fix closes issue12683 - urljoin to work with relative join of svn scheme.

Antoine Pitrou solipsis at pitrou.net
Wed Aug 3 15:23:19 CEST 2011


On Wed, 03 Aug 2011 12:47:23 +0200 senthil.kumaran <python-checkins at python.org> wrote:

diff --git a/Lib/test/testurlparse.py b/Lib/test/testurlparse.py --- a/Lib/test/testurlparse.py +++ b/Lib/test/testurlparse.py @@ -371,6 +371,8 @@ 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')

This is the same test repeated. Perhaps you meant svn+ssh?

Regards

Antoine.



More information about the Python-Dev mailing list