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 eugenet
Recipients BreamoreBoy, eugenet, loewis, tholzer
Date 2014-06-22.20:01:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1403467312.61.0.215274574539.issue7932@psf.upfronthosting.co.za>
In-reply-to
Content
A similar problem seems to appear in Python 3.5

./python -c 'import sys; print("x", file=sys.stdout)' 1>&- ; echo $? 
0

./python -c 'import sys; print("x", file=sys.stderr)' 2>&- ; echo $?
x
0

but again, this does seem to be a very specific corner case.
History
Date User Action Args
2014-06-22 20:01:52eugenetsetrecipients: + eugenet, loewis, tholzer, BreamoreBoy
2014-06-22 20:01:52eugenetsetmessageid: <1403467312.61.0.215274574539.issue7932@psf.upfronthosting.co.za>
2014-06-22 20:01:52eugenetlinkissue7932 messages
2014-06-22 20:01:52eugenetcreate