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 Timothy.Gates
Recipients Timothy.Gates
Date 2010-12-21.23:42:23
SpamBayes Score 0.014156471
Marked as misclassified No
Message-id <1292974948.23.0.113503342061.issue10753@psf.upfronthosting.co.za>
In-reply-to
Content
Consider the URL making use of the RFC1808 param syntax...

http://www/path;cookie=1234

The entire section '/path;cookie=1234' is passed in as PATH_INFO and so under the request_uri implementation it will be quoted

> import wsgiref
> wsgiref.request_uri({'wsgi.url_scheme': 'http', 'HTTP_HOST': 'www', 'PATH_INFO': '/path;cookie=1234'})
'http://www/path%3Bcookie%3D1234'
History
Date User Action Args
2010-12-21 23:42:28Timothy.Gatessetrecipients: + Timothy.Gates
2010-12-21 23:42:28Timothy.Gatessetmessageid: <1292974948.23.0.113503342061.issue10753@psf.upfronthosting.co.za>
2010-12-21 23:42:24Timothy.Gateslinkissue10753 messages
2010-12-21 23:42:23Timothy.Gatescreate