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.18:14:17
SpamBayes Score 0.0022853625
Marked as misclassified No
Message-id <1224008061.69.0.581437081517.issue1210@psf.upfronthosting.co.za>
In-reply-to
Content
IMAP_stream() is also broken because it uses os.popen2() which has 
been deprecated since long time and now replaced by subprocess.

Here is a patch replacing os.popen2() by subprocess, but also using 
transparent conversion from/to unicode using io.TextIOWrapper().
History
Date User Action Args
2008-10-14 18:14:22vstinnersetrecipients: + vstinner, loewis, barry, nnorwitz, exarkun, janssen, draghuram, christian.heimes, donmez, rtmq
2008-10-14 18:14:21vstinnersetmessageid: <1224008061.69.0.581437081517.issue1210@psf.upfronthosting.co.za>
2008-10-14 18:14:21vstinnerlinkissue1210 messages
2008-10-14 18:14:20vstinnercreate