New submission from Senthil Kumaran <orsent...@gmail.com>:

>>> from urlparse import *
>>> urlsplit('git+file:///foo/bar/baz')
SplitResult(scheme='git+file', netloc='', path='/foo/bar/baz', query='', 
fragment='')
>>> urlunsplit(urlsplit('git+file:///foo/bar/baz'))
'git+file:/foo/bar/baz'
>>>

----------
assignee: orsenthil
files: urlparse_giturl.patch
keywords: patch
messages: 105256
nosy: orsenthil
priority: normal
severity: normal
status: open
title: urlparse.urlunsplit should be smarter about + and file urls
type: behavior
Added file: http://bugs.python.org/file17257/urlparse_giturl.patch

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue8658>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to