This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author takayuki
Recipients takayuki
Date 2015-07-18.02:49:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1437187776.37.0.855244973055.issue24657@psf.upfronthosting.co.za>
In-reply-to
Content
I executed CGIHTTPServer and requested the following URI,
"http://localhost:8000/cgi-bin/test.py?k=aa%2F%2Fbb"
to pass "aa//bb" as argument "k",
but test.py received "aa/bb".

I looked in CGIHTTPServer.py and found _url_collapse_path function
discards continuous slash letters even they are in the given parameters.
History
Date User Action Args
2015-07-18 02:49:36takayukisetrecipients: + takayuki
2015-07-18 02:49:36takayukisetmessageid: <1437187776.37.0.855244973055.issue24657@psf.upfronthosting.co.za>
2015-07-18 02:49:36takayukilinkissue24657 messages
2015-07-18 02:49:35takayukicreate