Senthil Kumaran <orsent...@gmail.com> added the comment: 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. ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue5843> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com