[Python-checkins] python/dist/src/Misc NEWS,1.1073,1.1074

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Fri Aug 6 20:43:11 CEST 2004


Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23183/Misc

Modified Files:
	NEWS 
Log Message:
SF patch #980695:  efficient string concatenation
(Original patch by Armin Rigo).



Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.1073
retrieving revision 1.1074
diff -C2 -d -r1.1073 -r1.1074
*** NEWS	5 Aug 2004 12:43:29 -0000	1.1073
--- NEWS	6 Aug 2004 18:43:08 -0000	1.1074
***************
*** 13,16 ****
--- 13,21 ----
  -----------------
  
+ - 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:



More information about the Python-checkins mailing list