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 orsenthil
Recipients ezio.melotti, mgiuca, orsenthil
Date 2010-03-15.08:56:50
SpamBayes Score 0.0010947763
Marked as misclassified No
Message-id <1268643413.2.0.485527255658.issue8135@psf.upfronthosting.co.za>
In-reply-to
Content
I reviewed the patch:

+_hexdig = '0123456789ABCDEFabcdef'
+_hextochr = dict((a+b, chr(int(a+b,16))) for a in _hexdig for b in _hexdig)

is really a neat way to generate the dict of mixed-case percent escape to use with to unquote. I shall commit the patch to trunk code.

yes, following the other bug on unquote and we should be able to fair conclusion on it and include this logic in there.

Thanks.
History
Date User Action Args
2010-03-15 08:56:53orsenthilsetrecipients: + orsenthil, ezio.melotti, mgiuca
2010-03-15 08:56:53orsenthilsetmessageid: <1268643413.2.0.485527255658.issue8135@psf.upfronthosting.co.za>
2010-03-15 08:56:51orsenthillinkissue8135 messages
2010-03-15 08:56:50orsenthilcreate