[issue5843] Possible normalization error in urlparse.urlunparse

2010-08-17 Thread David Stanek
Changes by David Stanek dsta...@dstanek.com: -- nosy: +dstanek ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5843 ___ ___ Python-bugs-list mailing

[issue5843] Possible normalization error in urlparse.urlunparse

2010-07-14 Thread Senthil Kumaran
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

[issue5843] Possible normalization error in urlparse.urlunparse

2010-07-11 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- assignee: - orsenthil nosy: +orsenthil type: - behavior ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5843 ___

[issue5843] Possible normalization error in urlparse.urlunparse

2009-04-25 Thread Éric Araujo
New submission from Éric Araujo mer...@netwok.org: Docstring for urlunparse says: Put a parsed URI back together again. This may result in a slightly different, but equivalent URI, if the URI that was parsed originally had redundant delimiters, e.g. a ? with an empty query (the

[issue5843] Possible normalization error in urlparse.urlunparse

2009-04-25 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: This is indeed a bug. urlunparse should special-case # so as not to discard it. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5843 ___