equal
deleted
inserted
replaced
1357 <url scheme: 'bundle', path: 'foo'> |
1357 <url scheme: 'bundle', path: 'foo'> |
1358 >>> url('bundle://../foo') |
1358 >>> url('bundle://../foo') |
1359 <url scheme: 'bundle', path: '../foo'> |
1359 <url scheme: 'bundle', path: '../foo'> |
1360 >>> url(r'c:\foo\bar') |
1360 >>> url(r'c:\foo\bar') |
1361 <url path: 'c:\\foo\\bar'> |
1361 <url path: 'c:\\foo\\bar'> |
|
1362 >>> url(r'\\blah\blah\blah') |
|
1363 <url path: '\\\\blah\\blah\\blah'> |
1362 |
1364 |
1363 Authentication credentials: |
1365 Authentication credentials: |
1364 |
1366 |
1365 >>> url('ssh://joe:xyz@x/repo') |
1367 >>> url('ssh://joe:xyz@x/repo') |
1366 <url scheme: 'ssh', user: 'joe', passwd: 'xyz', host: 'x', path: 'repo'> |
1368 <url scheme: 'ssh', user: 'joe', passwd: 'xyz', host: 'x', path: 'repo'> |
1385 self.port = self.path = self.query = self.fragment = None |
1387 self.port = self.path = self.query = self.fragment = None |
1386 self._localpath = True |
1388 self._localpath = True |
1387 self._hostport = '' |
1389 self._hostport = '' |
1388 self._origpath = path |
1390 self._origpath = path |
1389 |
1391 |
1390 # special case for Windows drive letters |
1392 # special case for Windows drive letters and UNC paths |
1391 if hasdriveletter(path): |
1393 if hasdriveletter(path) or path.startswith(r'\\'): |
1392 self.path = path |
1394 self.path = path |
1393 return |
1395 return |
1394 |
1396 |
1395 # For compatibility reasons, we can't handle bundle paths as |
1397 # For compatibility reasons, we can't handle bundle paths as |
1396 # normal URLS |
1398 # normal URLS |