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 xiang.zhang
Recipients xiang.zhang
Date 2015-09-25.15:44:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1443195881.69.0.030953923686.issue25232@psf.upfronthosting.co.za>
In-reply-to
Content
According to rfc3986, section 3.4:

 The query component is indicated by the first question
 mark ("?") character and terminated by a number sign ("#") character
 or by the end of the URI.

 The characters slash ("/") and question mark ("?") may represent data
 within the query component.

But for CGIRequestHandler, it uses the content after the last ? as
query component. For uri http://localhost:8000/cgi-bin/test.py?a=b?c=d,
the QUERY_STRING is c=d.
History
Date User Action Args
2015-09-25 15:44:41xiang.zhangsetrecipients: + xiang.zhang
2015-09-25 15:44:41xiang.zhangsetmessageid: <1443195881.69.0.030953923686.issue25232@psf.upfronthosting.co.za>
2015-09-25 15:44:41xiang.zhanglinkissue25232 messages
2015-09-25 15:44:41xiang.zhangcreate