[issue23112] SimpleHTTPServer/http.server adds trailing slash after query string

2014-12-26 Thread Roundup Robot
Roundup Robot added the comment: New changeset b058a904c630 by Benjamin Peterson in branch '2.7': fix behavior of trailing slash redirection when a query string is involved (closes #23112) https://hg.python.org/cpython/rev/b058a904c630 New changeset 3d19f419cc44 by Benjamin Peterson in branch '

[issue23112] SimpleHTTPServer/http.server adds trailing slash after query string

2014-12-26 Thread Kevin J Pallan
Changes by Kevin J Pallan : -- nosy: +artifex93 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue23112] SimpleHTTPServer/http.server adds trailing slash after query string

2014-12-25 Thread Josep Portella Florit
New submission from Josep Portella Florit: To reproduce: 1) Create directory "foo" in the current directory. 2) Run "python -m SimpleHTTPServer" or "python3 -m http.server". 3A) Point web browser to "http://127.0.0.1:8000/foo/?";. The request is redirected to "http://127.0.0.1:8000/foo/?/";.