I've since found a work around, but still want to know the answer.

link|improve this question

52% accept rate
2  
Then you should explain what exactly you are trying to do. You can convert your traceback to a string using traceback.format_exec(). Strings are eminently pickleable. – dusktreader May 26 '11 at 0:41
I'm not necessarily complaining, but I am interested in why this was down-voted exactly. Out of 1) lack of research, 2) unclear, or 3) not useful, I guess I'd chose (1) if I had to, but does that mean I should list all the Google results and books that didn't contain the answer I was after? – Trindaz May 27 '11 at 5:51
feedback

1 Answer

up vote 6 down vote accepted

The traceback holds references to the stack frames of each function/method that was called on the current thread, from the topmost-frame on down to the point where the error was raised. Each stack frame also holds references to the local and global variables in effect at the time each function in the stack was called.

Since there is no way for pickle to know what to serialize and what to ignore, if you were able to pickle a traceback you'd end up pickling a moving snapshot of the entire application state: as pickle runs, other threads may be modifying the values of shared variables.

One solution is to create a picklable object to walk the traceback and extract only the information you need to save.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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