The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
3answers
645 views

Get last function's call arguments from traceback?

Can I get the parameters of the last function called in traceback? How? I want to make a catcher for standard errors to make readable code, yet provide detailed information to user. In the following ...
6
votes
4answers
1k views

How can I modify a Python traceback object when raising an exception?

I'm working on a Python library used by third-party developers to write extensions for our core application. I'd like to know if it's possible to modify the traceback when raising exceptions, so the ...
4
votes
1answer
1k views

Getting traceback information from IronPython exceptions

I have IronPython hosted within my application, whenever I catch an exception thrown from a script, I get unhelpful gibberish like this: IronPython.NewTypes.System.Exception_1$1: Error occurred ...
8
votes
3answers
4k views

Python: how to format traceback objects

I have a traceback object that I want to show in the nice format I get when calling traceback.format_exc() Is there a builtin function for that, or a few lines of code?
2
votes
2answers
419 views

Help me understand this traceback from the twisted.words msn sample

I'm running the twisted.words msn protocol example from the twisted documentation located here: http://twistedmatrix.com/projects/words/documentation/examples/msn_example.py I am aware there is ...
43
votes
5answers
71k views

How to exit from python without traceback?

I would like to know how to I exit from python without having an traceback dump on the output. I still want want to be able to return an error code but I do not want to display the traceback log. I ...
5
votes
1answer
434 views

How can I get source and variable values in ruby tracebacks?

Here's the last few frames of a typical Ruby on Rails traceback: And here are the last few frames of a typical Nevow traceback in Python: It's not just the web environment either, you can make ...