Re: traceback.print_exc() supposed to stop exception propagation.

2008-04-06 Thread Gabriel Genellina
En Sun, 06 Apr 2008 16:16:46 -0300, Sami <[EMAIL PROTECTED]> escribió: > In the Python book that I am using to learn the language it says that > the traceback.print_exc() can be used to stop exception propagation and > make the program keep running. Either the book is wrong or you have misinter

Re: traceback.print_exc() supposed to stop exception propagation.

2008-04-06 Thread Terry Reedy
"Sami" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] | Hello, | | In the Python book that I am using to learn the language it says that | the traceback.print_exc() can be used to stop exception propagation and | make the program keep running. It is possible that the unspecified boo

Re: traceback.print_exc() supposed to stop exception propagation.

2008-04-06 Thread Diez B. Roggisch
Sami schrieb: > Hello, > > In the Python book that I am using to learn the language it says that > the traceback.print_exc() can be used to stop exception propagation and > make the program keep running. > > Here is a simple piece of code that I typed in to test this fact: > ---

traceback.print_exc() supposed to stop exception propagation.

2008-04-06 Thread Sami
Hello, In the Python book that I am using to learn the language it says that the traceback.print_exc() can be used to stop exception propagation and make the program keep running. Here is a simple piece of code that I typed in to test this fact: -