[TxMt] Re: Line buffering for the Stdout window?

Chris Rebert textmate at rebertia.com
Fri Apr 10 08:01:50 UTC 2009


On Fri, Apr 10, 2009 at 12:43 AM, Jean-Denis Muys <jdmuys at free.fr> wrote:
> Hello,
>
> I'm growing increasingly annoyed with an issue I could not find a
> solution for: the output to stderr and stdout getting out of sync in
> the default TextMate output window.
>
> I am currently developping for Perl, but I quickly checked that the
> issue is there for Ruby as well.

Apparently Python too:

#program:
from sys import stderr as e, stdout as o
e.write("debug1\n")
o.write("hi\n")
e.write("bug2\n")
o.write("bye\n")
e.write("buggy3\n")

#textmate output window:
hi
bye
debug1
bug2
buggy3

Cheers,
Chris

--
I have a blog:
http://blog.rebertia.com



More information about the textmate mailing list