Re: Ignore exceptions

2008-01-24 Thread Scott David Daniels
Roger Miller wrote: > On Jan 24, 11:30 am, Jonathan Gardner <[EMAIL PROTECTED]> > wrote: >> > >> A few sample good uses of try/except blocks: >> (1) Do something else if an expected exception occurs. >> (2) Show a friendly error message when an exception occurs over ... > I'd add (3) Clean-up

Re: Ignore exceptions

2008-01-24 Thread Roger Miller
On Jan 24, 11:30 am, Jonathan Gardner <[EMAIL PROTECTED]> wrote: > > A few sample good uses of try/except blocks: > > (1) Do something else if an expected exception occurs. > ... > (2) Show a friendly error message when an exception occurs over a > significant chunk of the program. (Useful fo

Re: Ignore exceptions

2008-01-24 Thread Jonathan Gardner
On Jan 24, 12:13 pm, SMALLp <[EMAIL PROTECTED]> wrote: > Hy. Is there any way to make interrupter ignore exceptions. I'm working > on bigger project and i used to put try catch blocks after writing and > testing code what's boring and it's easy to make mistake. I rem

Re: Ignore exceptions

2008-01-24 Thread Grant Edwards
On 2008-01-24, SMALLp <[EMAIL PROTECTED]> wrote: > Hy. Hi. > Is there any way to make interrupter ignore exceptions. Nope. Either handle the exceptions or write code that doesn't generate exceptions. > I'm working on bigger project and i used to put try catch &

Re: Ignore exceptions

2008-01-24 Thread Mike Driscoll
On Jan 24, 2:13 pm, SMALLp <[EMAIL PROTECTED]> wrote: > Hy. Is there any way to make interrupter ignore exceptions. I'm working > on bigger project and i used to put try catch blocks after writing and > testing code what's boring and it's easy to make mistake. I rem

Ignore exceptions

2008-01-24 Thread SMALLp
Hy. Is there any way to make interrupter ignore exceptions. I'm working on bigger project and i used to put try catch blocks after writing and testing code what's boring and it's easy to make mistake. I remember of something like that in C++ but I cant find anythin like