[Python-checkins] python/dist/src/Lib formatter.py,1.25,1.26

fdrake at users.sourceforge.net fdrake at users.sourceforge.net
Tue Dec 7 15:08:38 CET 2004


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

Modified Files:
	formatter.py 
Log Message:
remove the other half of one of the regsub-related comments; the other
half was removed in revision 1.25


Index: formatter.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/formatter.py,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -d -r1.25 -r1.26
--- formatter.py	7 Dec 2004 07:55:06 -0000	1.25
+++ formatter.py	7 Dec 2004 14:08:24 -0000	1.26
@@ -176,7 +176,6 @@
 
     def add_flowing_data(self, data):
         if not data: return
-        # The following looks a bit convoluted but is a great improvement over
         prespace = data[:1].isspace()
         postspace = data[-1:].isspace()
         data = " ".join(data.split())



More information about the Python-checkins mailing list