Re: [Tutor] how to pause or stop a running python script?

2007-01-25 Thread Wong Vincent
Hi, If I use run a script which consist the following line: -->os.popen("python c:\\test.py") Is it possible for me to interrupt the pause/stop the running of "test.py" halfway? If not, can you please suggest a way. Thanks Best regards Vincent -

Re: [Tutor] Does Python have any callback function?

2007-01-28 Thread Wong Vincent
Dear tutor, My current application has 2 python scripts running in parallel, say script A and B. script A: GUI script B: data processing. A will invoke B to run. If I would like B to update processing status to A(so that user is able to see realtime status), how can I do it?

Re: [Tutor] Can I pause, stop or reset python virtual machine

2007-02-04 Thread Wong Vincent
Dear tutors, Hi. Does python provide any API to pause, stop or reset the virtual machine? Am currently building an application which will run a script file using os.popen(). In order to allow user to run, stop and pause the application, is it advisable to do the abovementioned? or is ther