[issue5843] Possible normalization error in urlparse.urlunparse

2010-08-17 Thread David Stanek
Changes by David Stanek : -- nosy: +dstanek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue5843] Possible normalization error in urlparse.urlunparse

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

[issue5843] Possible normalization error in urlparse.urlunparse

2010-07-11 Thread Éric Araujo
Changes by Éric Araujo : -- assignee: -> orsenthil nosy: +orsenthil type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mai

[issue5843] Possible normalization error in urlparse.urlunparse

2009-04-25 Thread Éric Araujo
Éric Araujo added the comment: This is indeed a bug. urlunparse should special-case "#" so as not to discard it. -- ___ Python tracker ___ ___

[issue5843] Possible normalization error in urlparse.urlunparse

2009-04-25 Thread Éric Araujo
New submission from Éric Araujo : 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 draft states th