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
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
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
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
&
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
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