Nikola Skoric wrote:

> Is there a way to tell the interpreter to display exceptions, even those
> which were captured with except?
>
I believe you are looking for "raise".
For example:

Try:
   some.code()
except SomeError:
   do.whatever()
   raise



- Bill
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to