[Python-checkins] python/dist/src/Doc/whatsnew whatsnew24.tex, 1.82, 1.83

akuchling at users.sourceforge.net akuchling at users.sourceforge.net
Sat Aug 7 15:13:34 CEST 2004


Update of /cvsroot/python/python/dist/src/Doc/whatsnew
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17920

Modified Files:
	whatsnew24.tex 
Log Message:
Add string concat item

Index: whatsnew24.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/whatsnew/whatsnew24.tex,v
retrieving revision 1.82
retrieving revision 1.83
diff -C2 -d -r1.82 -r1.83
*** whatsnew24.tex	6 Aug 2004 18:55:48 -0000	1.82
--- whatsnew24.tex	7 Aug 2004 13:13:31 -0000	1.83
***************
*** 816,819 ****
--- 816,826 ----
    by about a third.
  
+ \item String concatenations in statements of the form \code{s = s +
+ "abc"} and \code{s += "abc"} are now performed more efficiently in
+ certain circumstances.  This optimization won't be present in other
+ Python implementations such as Jython, so you shouldn't rely on it;
+ using the \method{join()} method of strings is still recommended when
+ you want to efficiently glue a large number of strings together.
+ 
  \end{itemize}
  



More information about the Python-checkins mailing list