Dmi Baranov added the comment:
anh, nice catch.
Madison, I'm not see any terrible consequences, only urlsplit is affected now:
>>> urlsplit('http://user:[email protected]:80/path?query#fragment')
SplitResult(scheme='http', netloc='user:[email protected]:80', path='/path',
query='query', fragment='fragment')
>>> urlunsplit(_)
'http://user:[email protected]:80/path?query#fragment'
>>> urlunsplit(('http', 'user:pass#[email protected]:80', '/path', 'query',
>>> 'fragment'))
'http://user:pass#[email protected]:80/path?query#fragment'
----------
nosy: +dmi.baranov
_______________________________________
Python tracker <[email protected]>
<http://bugs.python.org/issue18140>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com