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 ezio.melotti, jaraco, lemburg, loewis, r.david.murray, serhiy.storchaka, vstinner
Date 2014-07-16.12:30:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1405513854.65.0.301347611886.issue21927@psf.upfronthosting.co.za>
In-reply-to
Content
Bytes repr doesn't contains non-ascii characters, therefore Python is actually receiving a question mark from the pipe.

What are results of following commands?

py -3 -c "import sys; sys.stdout.buffer.write(bytes(range(128, 256)))"

py -3 -c "import sys; sys.stdout.buffer.write(bytes(range(128, 256)))" | py -3 -c "import sys; b = sys.stdin.buffer.read(); print(len(b), b)"
History
Date User Action Args
2014-07-16 12:30:54serhiy.storchakasetrecipients: + serhiy.storchaka, lemburg, loewis, jaraco, vstinner, ezio.melotti, r.david.murray
2014-07-16 12:30:54serhiy.storchakasetmessageid: <1405513854.65.0.301347611886.issue21927@psf.upfronthosting.co.za>
2014-07-16 12:30:54serhiy.storchakalinkissue21927 messages
2014-07-16 12:30:54serhiy.storchakacreate