diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2008-08-07 21:50:41 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2008-08-07 21:50:41 (GMT) |
commit | af14b79ccea4dd04376fc2720905d8d2f29c5b6a (patch) | |
tree | 347828e93b23ebedbad9b3b5f41143800193ade2 /Misc/NEWS | |
parent | 4cc0f24857c345ba99691b2ae6829c6ce3c0edcd (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 ------- |