Message8121

Author cdleonard
Recipients cdleonard
Date 2013-09-20.14:01:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1379685701.19.0.450470680052.issue2089@psf.upfronthosting.co.za>
In-reply-to
Content
Same code is very simple:

import sys
sys.stdout.write('hello')
sys.exit(0)

This prints "hello" (without EOL) with cpython and nothing with jython. It behaves as expected if either the sys.exit statement is removed or an EOL is printed.

This should behave like python. Writing something to stdout without EOL is perfectly valid.
History
Date User Action Args
2013-09-20 14:01:41cdleonardsetrecipients: + cdleonard
2013-09-20 14:01:41cdleonardsetmessageid: <1379685701.19.0.450470680052.issue2089@psf.upfronthosting.co.za>
2013-09-20 14:01:41cdleonardlinkissue2089 messages
2013-09-20 14:01:40cdleonardcreate