See the title of this question. I want to play with the exception raised in the last command. _ didn't help me. Is there anything like that?

link|improve this question

Could you provide any code or error traceback or anything we can read to understand what you're talking about? – S.Lott Jul 3 '09 at 12:15
feedback

1 Answer

up vote 4 down vote accepted

Do this:

import sys
sys.exc_info()

It will give you information about the exception. It's a tuple containing the exception type, the exception instance and a traceback object.

link|improve this answer
1  
Thanks, also sys.last_value works. :) – Achimnol Jul 3 '09 at 7:36
2  
sys.last_value will not work in 3.0, sys.exc_info() will work on 3.0 and 2.x – Anurag Uniyal Jul 3 '09 at 7:52
sys.last_value works in 2.7 and according to the documentation, it's still there in Python 3.3. However sys.exc_info() won't work outside of an except block. – jd. Apr 27 at 12:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.