Re: [Tutor] python exceptions

2006-11-26 Thread John Fouhy
On 27/11/06, johnf <[EMAIL PROTECTED]> wrote: > So there are outside exception handlers? OK. thanks for the answer. For now > that all I needed to understand. I'm not sure that "outside" is quite the right word .. If you write Tkinter code, you will (at some point) call mainloop(). mainloop()

Re: [Tutor] python exceptions

2006-11-26 Thread johnf
On Sunday 26 November 2006 16:17, John Fouhy wrote: > On 27/11/06, johnf <[EMAIL PROTECTED]> wrote: > > I can but it's not the issue - I think? I want to know how it works - > > exceptions not handled by python that is. Are there exception handled > > outside of python when using modules such as

Re: [Tutor] python exceptions

2006-11-26 Thread John Fouhy
On 27/11/06, johnf <[EMAIL PROTECTED]> wrote: > I can but it's not the issue - I think? I want to know how it works - > exceptions not handled by python that is. Are there exception handled > outside of python when using modules such as wxPython and pyQT? Or are some > exceptions not handled whe

Re: [Tutor] python exceptions

2006-11-26 Thread johnf
On Sunday 26 November 2006 15:43, Alan Gauld wrote: > "johnf" <[EMAIL PROTECTED]> wrote > > > My debugger comes up with lots of exceptions (builtin with my IDE > > wing) when I > > run code I have obtained from others. This is not a formating > > error - but > > real unhandled exceptions. But the

Re: [Tutor] python exceptions

2006-11-26 Thread Alan Gauld
"johnf" <[EMAIL PROTECTED]> wrote > My debugger comes up with lots of exceptions (builtin with my IDE > wing) when I > run code I have obtained from others. This is not a formating > error - but > real unhandled exceptions. But the when the program/programs is/are > run from > the command li

[Tutor] python exceptions

2006-11-26 Thread johnf
My debugger comes up with lots of exceptions (builtin with my IDE wing) when I run code I have obtained from others. This is not a formating error - but real unhandled exceptions. But the when the program/programs is/are run from the command line they work as expected. So does this mean tha