Message190690
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' |
|
| Date |
User |
Action |
Args |
| 2013-06-05 20:19:08 | dmi.baranov | set | recipients:
+ dmi.baranov, orsenthil, madison.may, anh.le |
| 2013-06-05 20:19:08 | dmi.baranov | set | messageid: <[email protected]> |
| 2013-06-05 20:19:08 | dmi.baranov | link | issue18140 messages |
| 2013-06-05 20:19:08 | dmi.baranov | create | |
|