summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-04-27 22:31:40 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-04-27 22:31:40 (GMT)
commit7a0fedfd1d387424c9e19059a126939d5f7bdea2 (patch)
tree0a180a7793e5b590a846869d01379a41e3078565 /Misc
parent57f3d93552edf5f4f5d5e8fad5aff9f72788bc7a (diff)
downloadcpython-7a0fedfd1d387424c9e19059a126939d5f7bdea2.zip
cpython-7a0fedfd1d387424c9e19059a126939d5f7bdea2.tar.gz
cpython-7a0fedfd1d387424c9e19059a126939d5f7bdea2.tar.bz2
Merged revisions 72054 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r72054 | antoine.pitrou | 2009-04-27 23:53:26 +0200 (lun., 27 avril 2009) | 5 lines Issue #1734234: Massively speedup `unicodedata.normalize()` when the string is already in normalized form, by performing a quick check beforehand. Original patch by Rauli Ruohonen. ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS4
2 files changed, 5 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 53d7259..a4f8481 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -616,6 +616,7 @@ Craig Rowland
Paul Rubin
Sam Ruby
Audun S. Runde
+Rauli Ruohonen
Jeff Rush
Sam Rushing
Mark Russell
diff --git a/Misc/NEWS b/Misc/NEWS
index 8e1bd4e..2d95ef8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -92,6 +92,10 @@ Installation
Library
-------
+- Issue #1734234: Massively speedup ``unicodedata.normalize()`` when the
+ string is already in normalized form, by performing a quick check beforehand.
+ Original patch by Rauli Ruohonen.
+
- Issue #5853: calling a function of the mimetypes module from several threads
at once could hit the recursion limit if the mimetypes database hadn't been
initialized before.