On Sun, Apr 03, 2005 at 10:33:22PM +0200, Leeuw van der, Tim wrote:
> try:
>     # call server
> except:
>     # Do exception handling


Except you don't want to do 

    except:
        ...

ever, but

    except FooError:
        ...
        
Always trap specific exceptions, or you will not pass GO (neither will
you collect $200).

Take care,
--
Christian Robottom Reis | http://async.com.br/~kiko/ | [+55 16] 3361 2331
_______________________________________________
pygtk mailing list   pygtk@daa.com.au
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/

Reply via email to