[issue10485] http.server fails when query string contains addition '?' characters

2015-10-01 Thread Martin Panter
Changes by Martin Panter : -- resolution: -> duplicate status: open -> closed superseder: -> CGIRequestHandler behave incorrectly with query component consisting mutliple ? ___ Python tracker ___

[issue10485] http.server fails when query string contains addition '?' characters

2014-07-03 Thread Mark Lawrence
Mark Lawrence added the comment: Slipped under the radar? -- nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 -Python 2.6, Python 3.1, Python 3.2 ___ Python tracker ___ _

[issue10485] http.server fails when query string contains addition '?' characters

2012-03-16 Thread Senthil Kumaran
Changes by Senthil Kumaran : -- assignee: -> orsenthil ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue10485] http.server fails when query string contains addition '?' characters

2010-11-21 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +facundobatista, fdrake, orsenthil ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue10485] http.server fails when query string contains addition '?' characters

2010-11-20 Thread Glenn Linderman
Changes by Glenn Linderman : -- type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue10485] http.server fails when query string contains addition '?' characters

2010-11-20 Thread Glenn Linderman
New submission from Glenn Linderman : http.server on Python 3 and CGIHTTPServer on Python 2 both contain the same code with the same bug. In run_cgi, rest.rfind('?') is used to separate the path from the query string. However, it should be rest.find('?') as the query string starts with '?' b