Re: terminate exectutioin in PythonWin

2005-04-13 Thread Neil Hodgson
Jim: > Great thanks! PythonWin isn't hot on keyboard shortcuts but ironically > calls this a KeyboardInterrupt :| I don't think the keyboard can be accessed in this situation so the icon is provided. > Know any keyboard shortcuts for debug view? e.g. open it, run(debug), > step etc. No

Re: terminate exectutioin in PythonWin

2005-04-13 Thread olsongt
> > > > > D'oh. I didn't think of that. > > Thanks > > Jim A little off-topic, but here's a little more fun with pythonwin. You can spawn the debugging environment from a normal python script running outside of pythonwin with: import pywin.debugger;pywin.debugger.set_trace() Also note that 'py

Re: terminate exectutioin in PythonWin

2005-04-13 Thread Jim
Steve Holden wrote: Jim wrote: [...] Actually I meant how do I stop a program running that I have started in the interpreter. If I get into an infinite loop I can't stop it without qutting PythonWin. Then I have to open all the files and re-insert breakpoints etc. :( Jim Look in the system tra

Re: terminate exectutioin in PythonWin

2005-04-13 Thread Steve Holden
Jim wrote: [...] Actually I meant how do I stop a program running that I have started in the interpreter. If I get into an infinite loop I can't stop it without qutting PythonWin. Then I have to open all the files and re-insert breakpoints etc. :( Jim Look in the system tray! Right-mouse on the

Re: terminate exectutioin in PythonWin

2005-04-13 Thread Jim
Neil Hodgson wrote: Jim, 1.Could someone tell me how to terminate execution in PythonWin? Use the "Break into running code" command on the context menu of the PythonWin icon in the bottom right of the taskbar. Neil Great thanks! PythonWin isn't hot on keyboard shortcuts but ironically ca

Re: terminate exectutioin in PythonWin

2005-04-13 Thread Neil Hodgson
Jim, > 1.Could someone tell me how to terminate execution in PythonWin? Use the "Break into running code" command on the context menu of the PythonWin icon in the bottom right of the taskbar. Neil -- http://mail.python.org/mailman/listinfo/python-list

Re: terminate exectutioin in PythonWin

2005-04-13 Thread Jim
Larry Bates wrote: 1) To exit any application: import sys sys.exit(0) ... Thanks Larry. Actually I meant how do I stop a program running that I have started in the interpreter. If I get into an infinite loop I can't stop it without qutting PythonWin. Then I have to open all the files and re-ins

Re: terminate exectutioin in PythonWin

2005-04-13 Thread Larry Bates
1) To exit any application: import sys sys.exit(0) 2) I'm not familiar with any of these development systems. I use what comes with ActiveState's PythonWin. It does have debugging breakpoints, etc. Larry Bates Jim wrote: > Hi all > > 1.Could someone tell me how to terminate execution in Pyth