summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2008-08-07 21:50:41 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2008-08-07 21:50:41 (GMT)
commitaf14b79ccea4dd04376fc2720905d8d2f29c5b6a (patch)
tree347828e93b23ebedbad9b3b5f41143800193ade2 /Misc/NEWS
parent4cc0f24857c345ba99691b2ae6829c6ce3c0edcd (diff)
downloadcpython-af14b79ccea4dd04376fc2720905d8d2f29c5b6a.zip
cpython-af14b79ccea4dd04376fc2720905d8d2f29c5b6a.tar.gz
cpython-af14b79ccea4dd04376fc2720905d8d2f29c5b6a.tar.bz2
issue #3460: PyUnicode_Join() implementation can be simplified in py3k
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1e22f70..25c72df 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -22,6 +22,10 @@ Core and Builtins
If you need to access the UTF-8 representation of a Unicode object
as bytes string, please use PyUnicode_AsUTF8String() instead.
+- Issue #3460: PyUnicode_Join() implementation is 10% to 80% faster thanks
+ to Python 3.0's stricter semantics which allow to avoid successive
+ reallocations of the result string (this also affects str.join()).
+
Library
-------