[New-bugs-announce] [issue8658] urlparse.urlunsplit should be smarter about + and file urls

Senthil Kumaran report at bugs.python.org
Sat May 8 06:00:34 CEST 2010


New submission from Senthil Kumaran <orsenthil at 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 <report at bugs.python.org>
<http://bugs.python.org/issue8658>
_______________________________________


More information about the New-bugs-announce mailing list