[Python-checkins] python/dist/src/Lib codecs.py,1.44,1.45

doerwalter at users.sourceforge.net doerwalter at users.sourceforge.net
Thu Apr 21 23:42:38 CEST 2005


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

Modified Files:
	codecs.py 
Log Message:
Fix comment.


Index: codecs.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/codecs.py,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -d -r1.44 -r1.45
--- codecs.py	21 Apr 2005 21:32:03 -0000	1.44
+++ codecs.py	21 Apr 2005 21:42:35 -0000	1.45
@@ -306,8 +306,8 @@
         while True:
             data = self.read(readsize)
             if data:
-                # If we're at a "\r" read one # extra character # (which might
-                # be a "\n") to get a proper # line ending. If the stream is
+                # If we're at a "\r" read one extra character (which might
+                # be a "\n") to get a proper line ending. If the stream is
                 # temporarily exhausted we return the wrong line ending.
                 if data.endswith(u"\r"):
                     data += self.read(size=1, chars=1)



More information about the Python-checkins mailing list