diff options
author | Raymond Hettinger <python@rcn.com> | 2004-08-06 18:43:09 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-08-06 18:43:09 (GMT) |
commit | 52a21b8e65e2a231595cfec639701266202438a2 (patch) | |
tree | 9c8c9ba3ea81643f19e5cd30281264bd993b6ddb /Misc | |
parent | d09d9664e6a0cde5e0c7a0234ef837e11df757f1 (diff) | |
download | cpython-52a21b8e65e2a231595cfec639701266202438a2.zip cpython-52a21b8e65e2a231595cfec639701266202438a2.tar.gz cpython-52a21b8e65e2a231595cfec639701266202438a2.tar.bz2 |
SF patch #980695: efficient string concatenation
(Original patch by Armin Rigo).
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -12,6 +12,11 @@ What's New in Python 2.4 alpha 2? Core and builtins ----------------- +- Patch #980695: Implements efficient string concatenation for statements + of the form s=s+t and s+=t. This will vary across implementations. + Accordingly, the str.join() method is strongly preferred for performance + sensitive code. + - PEP-0318, Function Decorators have been added to the language. These are implemented using the Java-style @decorator syntax, like so: @staticmethod |