Message180975
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). |
|
Date |
User |
Action |
Args |
2013-01-30 14:06:58 | serhiy.storchaka | set | recipients:
+ serhiy.storchaka, vstinner, jkloth, ezio.melotti, asvetlov, chris.jerdonek |
2013-01-30 14:06:58 | serhiy.storchaka | set | messageid: <1359554818.32.0.0378914665429.issue16903@psf.upfronthosting.co.za> |
2013-01-30 14:06:58 | serhiy.storchaka | link | issue16903 messages |
2013-01-30 14:06:58 | serhiy.storchaka | create | |
|