Message9900

Author zyasoft
Recipients amak, fwierzbicki, jasonsmith, pjenvey, zyasoft
Date 2015-04-19.22:44:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1429483470.31.0.229344923508.issue1723@psf.upfronthosting.co.za>
In-reply-to
Content
So we are writing this output out immediately, per msg6451, however, it does interact poorly with the console prompt being redisplayed by JLine2:

>>> sys.stdout.write("Hello.")
Hello.>>> sys.stderr.write("Hello.")
>>> o.>>>

where as CPython 2.7 does the following:

>>> import sys
>>> sys.stdout.write("Hello.")
Hello.>>> sys.stderr.write("Hello.")
Hello.>>>
History
Date User Action Args
2015-04-19 22:44:30zyasoftsetmessageid: <1429483470.31.0.229344923508.issue1723@psf.upfronthosting.co.za>
2015-04-19 22:44:30zyasoftsetrecipients: + zyasoft, fwierzbicki, amak, pjenvey, jasonsmith
2015-04-19 22:44:30zyasoftlinkissue1723 messages
2015-04-19 22:44:30zyasoftcreate