Search found 2 matches

by recursive
Tue Sep 09, 2008 5:10 pm
Forum: General
Topic: Disable buffering for tool?
Replies: 2
Views: 272

Well, I've answered my own question a year and a half later.

Textpad cannot control it. The script in question must flush standard output when it is desired to see the output.

In my case: (python)


import sys
...
while 1:
...
print "current status: " + status
sys.stdout.flush()
by recursive
Wed Feb 28, 2007 12:58 am
Forum: General
Topic: Disable buffering for tool?
Replies: 2
Views: 272

Disable buffering for tool?

How do I disable buffering for capturing output on tools? For example, I'm running a python script through textpad that may take several minutes or hours or days to complete, and I would like to see the output in the output window when it occurs, not when the buffer fills. How can this be ...