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 serhiy.storchaka
Recipients asvetlov, chris.jerdonek, ezio.melotti, jkloth, serhiy.storchaka, vstinner
Date 2013-01-30.14:06:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1359554818.32.0.0378914665429.issue16903@psf.upfronthosting.co.za>
In-reply-to
Content
Indeed, Popen.communicate() is incompatible not only between 3.2 and 3.3, but between Windows and POSIX too.

Documentation says the input argument should be a bytes string and 3.2 on POSIX works only with bytes strings. 3.2 on Windows and 3.3 on both platforms require an unicode string, as 3.3 documentation says. 3.2 on Windows hangs with a bytes string.

Patch updated with the documentation change (copied from 3.3).
History
Date User Action Args
2013-01-30 14:06:58serhiy.storchakasetrecipients: + serhiy.storchaka, vstinner, jkloth, ezio.melotti, asvetlov, chris.jerdonek
2013-01-30 14:06:58serhiy.storchakasetmessageid: <1359554818.32.0.0378914665429.issue16903@psf.upfronthosting.co.za>
2013-01-30 14:06:58serhiy.storchakalinkissue16903 messages
2013-01-30 14:06:58serhiy.storchakacreate