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 nadeem.vawda
Recipients MizardX, antlong, eric.araujo, mdehoon, nadeem.vawda, niemeyer, pitrou, rhettinger, wrobell, xuanji
Date 2011-03-21.01:15:42
SpamBayes Score 1.3276577e-08
Marked as misclassified No
Message-id <1300670147.77.0.0337852099305.issue5863@psf.upfronthosting.co.za>
In-reply-to
Content
Here is an updated patch, incorporating the feedback from your review.

The new patch no longer checks for errors in bz2CompressEnd()/bz2DecompressEnd()
in the dealloc functions for BZ2Compressor/BZ2Decompressor. I found that calling
PyErr_WriteUnraisable() results in spurious error messages if an exception is
raised by the init function, and in any case, the output would not be of much
use if a genuine error were to occur.

The patch adds implementations of most of the io.BufferedIOBase methods
(everything except detach(), read1() and truncate()), and includes unit tests
for fileno() and readinto().
History
Date User Action Args
2011-03-21 01:15:50nadeem.vawdasetrecipients: + nadeem.vawda, rhettinger, niemeyer, mdehoon, pitrou, wrobell, eric.araujo, MizardX, antlong, xuanji
2011-03-21 01:15:47nadeem.vawdasetmessageid: <1300670147.77.0.0337852099305.issue5863@psf.upfronthosting.co.za>
2011-03-21 01:15:47nadeem.vawdalinkissue5863 messages
2011-03-21 01:15:46nadeem.vawdacreate