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 detrout, gregory.p.smith, pitrou, r.david.murray
Date 2013-03-17.14:06:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1363529162.63.0.407412305672.issue17443@psf.upfronthosting.co.za>
In-reply-to
Content
os.fdopen() in 2.x would always create a FILE*, and therefore inherit fread()'s semantics even in "unbuffered" mode. In 3.x, unbuffered I/O instead calls read() directly, and happily returns partial reads; this is by design.

So, I guess imaplib should be fixed  :-)
History
Date User Action Args
2013-03-17 14:06:02pitrousetrecipients: + pitrou, gregory.p.smith, r.david.murray, detrout
2013-03-17 14:06:02pitrousetmessageid: <1363529162.63.0.407412305672.issue17443@psf.upfronthosting.co.za>
2013-03-17 14:06:02pitroulinkissue17443 messages
2013-03-17 14:06:02pitroucreate