Could you please fix it so that the messages are displayed in real
time?
Note: Ulipad 4.0 has this problem
Ulipad 3.9 has no problem displaying the messages in real time
Maybe it is because there is no "-u" parameter in python argument any
more, but you can add it yourself.
--
I like python!
UliPad <<The Python Editor>>: http://code.google.com/p/ulipad/
UliWeb <<simple web framework>>: http://uliwebproject.appspot.com
My Blog: http://hi.baidu.com/limodou
1. Python->Set Arguments...
Enter -u for the Parameters
2. mixins\Imports.py
def OnPythonRun(win, event):
..........
#modified the below line to include -u to enable unbuffered
stream output
#command = u'"%s" %s "%s" %s' % (interpreter, parameter,
doc.filename, args)
command = u'"%s" -u %s "%s" %s' % (interpreter, parameter,
doc.filename, args)
On Feb 6, 4:59 pm, limodou <limo...@gmail.com> wrote:
If you use the second appoach, it'll enabled for all situations, so I
think the first appoach is better.