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 grahamd
Recipients SilentGhost, animus, grahamd, martin.panter, orsenthil, Александр Эри
Date 2016-04-21.03:39:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1461209979.29.0.437771900174.issue26808@psf.upfronthosting.co.za>
In-reply-to
Content
Your code should be written as:

    res = """\
e:
{}
pi:
{}
qs:
{}
""".format(
        pprint.pformat(e),
        urllib.parse.unquote(e['PATH_INFO'].encode('Latin-1').decode('UTF-8')),
        urllib.parse.parse_qs(urllib.parse.unquote(e['QUERY_STRING'].encode('Latin-1').decode('UTF-8')))
        )
History
Date User Action Args
2016-04-21 03:39:39grahamdsetrecipients: + grahamd, orsenthil, SilentGhost, martin.panter, animus, Александр Эри
2016-04-21 03:39:39grahamdsetmessageid: <1461209979.29.0.437771900174.issue26808@psf.upfronthosting.co.za>
2016-04-21 03:39:39grahamdlinkissue26808 messages
2016-04-21 03:39:38grahamdcreate