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 zanella
Recipients benjamin.peterson, georg.brandl, humitos, kermode, zanella
Date 2008-06-29.22:57:17
SpamBayes Score 0.013613071
Marked as misclassified No
Message-id <1214780240.41.0.49753871064.issue2683@psf.upfronthosting.co.za>
In-reply-to
Content
On subprocess.py the new method communicate() doesn't encode the string:

"""
_communicate(self, input):
...
  if isinstance(input, str):
    input = input.encode()
...
"""

I've attached a patch that adds the str.encode() call on communicate().
History
Date User Action Args
2008-06-29 22:57:21zanellasetspambayes_score: 0.0136131 -> 0.013613071
recipients: + zanella, georg.brandl, kermode, benjamin.peterson, humitos
2008-06-29 22:57:20zanellasetspambayes_score: 0.0136131 -> 0.0136131
messageid: <1214780240.41.0.49753871064.issue2683@psf.upfronthosting.co.za>
2008-06-29 22:57:19zanellalinkissue2683 messages
2008-06-29 22:57:19zanellacreate