[issue44987] Speed up unicode normalization of ASCII strings

2021-09-11 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 5277ffe12d492939544ff9c54a3aaf448b913fb3 by Dong-hee Na in branch 'main': bpo-44987: Fix typo whatsnew 3.11 (GH-28293) https://github.com/python/cpython/commit/5277ffe12d492939544ff9c54a3aaf448b913fb3 -- _

[issue44987] Speed up unicode normalization of ASCII strings

2021-09-11 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +26709 pull_request: https://github.com/python/cpython/pull/28293 ___ Python tracker ___ _

[issue44987] Speed up unicode normalization of ASCII strings

2021-09-11 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue44987] Speed up unicode normalization of ASCII strings

2021-09-11 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 9abd07e5963f966c4d6df8f4e4bf390ed8191066 by Dong-hee Na in branch 'main': bpo-44987: Speed up unicode normalization of ASCII strings (GH-28283) https://github.com/python/cpython/commit/9abd07e5963f966c4d6df8f4e4bf390ed8191066 -- nosy

[issue44987] Speed up unicode normalization of ASCII strings

2021-09-11 Thread Dong-hee Na
Dong-hee Na added the comment: > Well, someone should write a PR for it. Well, I sent a patch :) -- ___ Python tracker ___ ___ Pyt

[issue44987] Speed up unicode normalization of ASCII strings

2021-09-10 Thread Dong-hee Na
Change by Dong-hee Na : -- keywords: +patch pull_requests: +26700 stage: -> patch review pull_request: https://github.com/python/cpython/pull/28283 ___ Python tracker ___

[issue44987] Speed up unicode normalization of ASCII strings

2021-09-10 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue44987] Speed up unicode normalization of ASCII strings

2021-09-07 Thread STINNER Victor
STINNER Victor added the comment: Well, someone should write a PR for it. -- ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue44987] Speed up unicode normalization of ASCII strings

2021-08-23 Thread Steven D'Aprano
New submission from Steven D'Aprano : I think there is an opportunity to speed up some unicode normalisations significantly. In 3.9 at least, the normalisation appears to be dependent on the length of the string: >>> setup="from unicodedata import normalize; s = 'reverse'" >>> t1 = T