This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author dmi.baranov
Recipients anh.le, dmi.baranov, madison.may, orsenthil
Date 2013-06-05.20:19:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <[email protected]>
In-reply-to
Content
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'
History
Date User Action Args
2013-06-05 20:19:08dmi.baranovsetrecipients: + dmi.baranov, orsenthil, madison.may, anh.le
2013-06-05 20:19:08dmi.baranovsetmessageid: <[email protected]>
2013-06-05 20:19:08dmi.baranovlinkissue18140 messages
2013-06-05 20:19:08dmi.baranovcreate