[Python-checkins] python/dist/src/Misc NEWS,1.1314,1.1315

rhettinger@users.sourceforge.net rhettinger at users.sourceforge.net
Fri Jul 15 08:53:37 CEST 2005


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

Modified Files:
	NEWS 
Log Message:
textwrap now processes text chucks at O(n) speed instead of O(n**2).
Patch #1209527 (Contributed by Connelly).



Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.1314
retrieving revision 1.1315
diff -u -d -r1.1314 -r1.1315
--- NEWS	14 Jul 2005 06:40:47 -0000	1.1314
+++ NEWS	15 Jul 2005 06:53:34 -0000	1.1315
@@ -168,6 +168,9 @@
 Library
 -------
 
+- textwrap now processes text chucks at O(n) speed instead of O(n**2).
+  Patch #1209527 (Contributed by Connelly).
+
 - urllib2 has now an attribute 'httpresponses' mapping from HTTP status code
   to W3C name (404 -> 'Not Found'). RFE #1216944.
 



More information about the Python-checkins mailing list