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 aronacher
Recipients apollo13, aronacher, cvrebert, grahamd, terry.reedy
Date 2014-01-10.23:13:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1389395588.12.0.261537588672.issue20138@psf.upfronthosting.co.za>
In-reply-to
Content
What it currently returns:

>>> from wsgiref.util import request_uri
>>> request_uri({
...  'wsgi.url_scheme': 'http',
...  'SCRIPT_NAME': '',
...  'PATH_INFO': '/\xe2\x98\x83',
...  'SERVER_PORT': '80',
...  'SERVER_NAME': 'localhost'
... })
'http://localhost/%C3%A2%C2%98%C2%83'

What it should return:

'http://localhost/%E2%98%83'
History
Date User Action Args
2014-01-10 23:13:08aronachersetrecipients: + aronacher, terry.reedy, grahamd, cvrebert, apollo13
2014-01-10 23:13:08aronachersetmessageid: <1389395588.12.0.261537588672.issue20138@psf.upfronthosting.co.za>
2014-01-10 23:13:08aronacherlinkissue20138 messages
2014-01-10 23:13:07aronachercreate