Message 110314 - Python tracker
Message110314
| Author | orsenthil |
|---|---|
| Recipients | eric.araujo, orsenthil |
| Date | 2010-07-14.19:09:30 |
| SpamBayes Score | 0.00943922 |
| Marked as misclassified | No |
| Message-id | <1279134572.0.0.332785303159.issue5843@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
Currently this claim will fail:
>>> obj = urlparse.urlparse('http://a/b/c?')
>>> urlparse.urlunparse(obj)
'http://a/b/c'
>>> obj = urlparse.urlparse('http://a/b/c#')
>>> urlparse.urlunparse(obj)
'http://a/b/c'
If we move away from the current behavior, there will surely be some test failures that can be observed for urljoins. We will have to consider those cases too while fixing this. |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2010-07-14 19:09:32 | orsenthil | set | recipients: + orsenthil, eric.araujo |
| 2010-07-14 19:09:32 | orsenthil | set | messageid: <1279134572.0.0.332785303159.issue5843@psf.upfronthosting.co.za> |
| 2010-07-14 19:09:30 | orsenthil | link | issue5843 messages |
| 2010-07-14 19:09:30 | orsenthil | create | |