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 josh.r
Recipients ezio.melotti, josh.r, pitrou, python-dev, serhiy.storchaka, vstinner
Date 2014-04-07.00:39:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1396831154.05.0.306480746704.issue21118@psf.upfronthosting.co.za>
In-reply-to
Content
Thanks for addressing this so fast. Annoyingly, I suspect it will not help the original case that led me to finding the slowdown (I had some code that was translating from 56 latin-1 Romance characters with diacritics to the equivalent ASCII characters, so it was 1-1, but it was always mapping from non-ASCII to ASCII, and therefore won't benefit from a change that only caches code points 0-127).

That said, every *other* time I've used str.translate has been in an ASCII->ASCII scenario, where this *will* help. So again, thank you.
History
Date User Action Args
2014-04-07 00:39:14josh.rsetrecipients: + josh.r, pitrou, vstinner, ezio.melotti, python-dev, serhiy.storchaka
2014-04-07 00:39:14josh.rsetmessageid: <1396831154.05.0.306480746704.issue21118@psf.upfronthosting.co.za>
2014-04-07 00:39:13josh.rlinkissue21118 messages
2014-04-07 00:39:12josh.rcreate