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 pitrou
Recipients pitrou, vstinner
Date 2009-01-20.11:40:32
SpamBayes Score 1.3694417e-05
Marked as misclassified No
Message-id <1232451645.89.0.19220507025.issue5008@psf.upfronthosting.co.za>
In-reply-to
Content
Comments on the patch:
- you should check the error return of lseek() (and possibly wrap it in
Py_BEGIN/END_ALLOW_THREADS, see portable_lseek() in the same file)
- there should be a test for each of unbuffered IO (buffering=0),
buffered IO ("rb") and text IO ("r"). For text IO, the test shouldn't
test the actual value returned by tell(), only that it is > 0 (because
tell() in text mode is an opaque value and is not necessarily equal to a
byte position)
History
Date User Action Args
2009-01-20 11:40:46pitrousetrecipients: + pitrou, vstinner
2009-01-20 11:40:45pitrousetmessageid: <1232451645.89.0.19220507025.issue5008@psf.upfronthosting.co.za>
2009-01-20 11:40:45pitroulinkissue5008 messages
2009-01-20 11:40:32pitroucreate