mirror of
https://github.com/python/cpython.git
synced 2025-08-20 00:32:12 +00:00
Fix closes issue12683 - urljoin to work with relative join of svn scheme.
This commit is contained in:
parent
c1ee4ef9dc
commit
f432aeca7c
3 changed files with 6 additions and 1 deletions
|
@ -339,6 +339,7 @@ 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')
|
||||
|
||||
def test_RFC2732(self):
|
||||
for url, hostname, port in [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue