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 vstinner
Recipients barry, christian.heimes, donmez, draghuram, exarkun, janssen, loewis, nnorwitz, rtmq, vstinner
Date 2008-10-14.22:34:49
SpamBayes Score 2.0390473e-07
Marked as misclassified No
Message-id <1224023691.97.0.247014605297.issue1210@psf.upfronthosting.co.za>
In-reply-to
Content
New version of my bytes patch:
 - fix IMAP4_stream: use subprocess.Popen() as my previous 
imap_stream.patch but use bytes instead of characters
 - fix IMAP4_SSL: sslobj wasn't set in IMAP4_SSL.open() but used, for 
example, in read() method; remove duplicate method (simplify the code)
 - IMAP4.read(): call file.read() multiple times if the result is 
smaller than size (needed especially for the SSL version); FIXME: does 
this function raise an error of EOF or just loop forever? should we 
stop the loop if data is b''?
History
Date User Action Args
2008-10-14 22:34:52vstinnersetrecipients: + vstinner, loewis, barry, nnorwitz, exarkun, janssen, draghuram, christian.heimes, donmez, rtmq
2008-10-14 22:34:51vstinnersetmessageid: <1224023691.97.0.247014605297.issue1210@psf.upfronthosting.co.za>
2008-10-14 22:34:51vstinnerlinkissue1210 messages
2008-10-14 22:34:51vstinnercreate