This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ilgiz
Recipients
Date 2007-06-04.21:52:05
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Here is a simple implementation of a line-oriented reader deriving from a buffered reader.  Unlike the suggested extra derivation of buffered I/O class from a raw I/O class, my BufReader only wraps an "iterable" stream.  Besides, I found I had to return an empty string instead of None on EOF because Python2.5's codecs.py assumes the former.

Submitting this just in case it is found useful.
History
Date User Action Args
2007-08-23 15:58:38adminlinkissue1731036 messages
2007-08-23 15:58:38admincreate