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 amaury.forgeotdarc
Recipients ajaksu2, amaury.forgeotdarc, harobed
Date 2010-03-31.10:00:18
SpamBayes Score 2.7950435e-05
Marked as misclassified No
Message-id <1270029621.31.0.495333713529.issue8260@psf.upfronthosting.co.za>
In-reply-to
Content
Buffering applies when writing, not when reading a file.

There is indeed a problem in codecs.py: after a readline(), read() will return the content of the internal buffer, and not more.

The "size" parameter is a hint, and should not be used to decide whether the character buffer is enough to satisfy the read() request.
Patch is attached, with test.
History
Date User Action Args
2010-03-31 10:00:21amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, ajaksu2, harobed
2010-03-31 10:00:21amaury.forgeotdarcsetmessageid: <1270029621.31.0.495333713529.issue8260@psf.upfronthosting.co.za>
2010-03-31 10:00:19amaury.forgeotdarclinkissue8260 messages
2010-03-31 10:00:19amaury.forgeotdarccreate