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 moritz
Recipients anacrolix, bethard, moritz, pitrou
Date 2012-06-05.13:51:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1338904300.69.0.960023694667.issue14156@psf.upfronthosting.co.za>
In-reply-to
Content
I don't know how if this is the perfect solution but it keeps the program from crashing.

1154c1154,1157
<                 return _sys.stdin
---
>                 if 'b' in self._mode:
>                     return _sys.stdin.buffer
>                 else:
>                     return _sys.stdin
1156c1159,1162
<                 return _sys.stdout
---
>                 if 'b' in self._mode:
>                     return _sys.stdout.buffer
>                 else:
>                     return _sys.stdout
History
Date User Action Args
2012-06-05 13:51:40moritzsetrecipients: + moritz, pitrou, bethard, anacrolix
2012-06-05 13:51:40moritzsetmessageid: <1338904300.69.0.960023694667.issue14156@psf.upfronthosting.co.za>
2012-06-05 13:51:40moritzlinkissue14156 messages
2012-06-05 13:51:39moritzcreate