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 serhiy.storchaka
Recipients apollo13, aronacher, cvrebert, grahamd, serhiy.storchaka, terry.reedy
Date 2014-01-10.23:49:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1389397786.0.0.0670834590335.issue20138@psf.upfronthosting.co.za>
In-reply-to
Content
>>> from wsgiref.util import request_uri
>>> request_uri({
...  'wsgi.url_scheme': 'http',
...  'SCRIPT_NAME': '',
...  'PATH_INFO': '/\N{SNOWMAN}',
...  'SERVER_PORT': '80',
...  'SERVER_NAME': 'localhost'
... })
'http://localhost/%E2%98%83'
>>> request_uri({
...  'wsgi.url_scheme': 'http',
...  'SCRIPT_NAME': '',
...  'PATH_INFO': b'/\xe2\x98\x83',
...  'SERVER_PORT': '80',
...  'SERVER_NAME': 'localhost'
... })
'http://localhost/%E2%98%83'
History
Date User Action Args
2014-01-10 23:49:46serhiy.storchakasetrecipients: + serhiy.storchaka, terry.reedy, aronacher, grahamd, cvrebert, apollo13
2014-01-10 23:49:45serhiy.storchakasetmessageid: <1389397786.0.0.0670834590335.issue20138@psf.upfronthosting.co.za>
2014-01-10 23:49:45serhiy.storchakalinkissue20138 messages
2014-01-10 23:49:45serhiy.storchakacreate