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 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:32orsenthilsetrecipients: + orsenthil, eric.araujo
2010-07-14 19:09:32orsenthilsetmessageid: <1279134572.0.0.332785303159.issue5843@psf.upfronthosting.co.za>
2010-07-14 19:09:30orsenthillinkissue5843 messages
2010-07-14 19:09:30orsenthilcreate