Author thomaswaldmann
Recipients
Date 2004-10-17.21:40:55
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
This is a quite obvious one:

$ diff -u codecs.py-orig codecs.py 
--- codecs.py-orig      2004-10-17 23:30:50.000000000 +0200
+++ codecs.py   2004-10-17 23:31:57.000000000 +0200
@@ -334,7 +334,7 @@
 
         """
         data = self.read()
-        return self.splitlines(keepends)
+        return data.splitlines(keepends)
 
     def reset(self):
 
I am using Python 2.4 beta 1.
History
Date User Action Args
2007-08-23 14:26:46adminlinkissue1048865 messages
2007-08-23 14:26:46admincreate