This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author gvanrossum
Recipients gvanrossum
Date 2013-05-05.21:31:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1367789486.16.0.484658151136.issue17911@psf.upfronthosting.co.za>
In-reply-to
Content
For Tulip I may have to extract tracebacks and store the extracted data, in order to avoid cycles created by the frames referenced in the traceback.  I'll be extracting the traceback every time an exception is raised, and in most cases I won't be using the extracted info, because usually the exception is caught (or logged) by user code.  But it's very important to ensure that if the user code doesn't catch or log it, I can log a traceback, and I won't know that this is the case until a destructor is called, which may be quite a bit later.  (Reference: http://code.google.com/p/tulip/source/browse/tulip/futures.py#38)

Unfortunately it looks like the public APIs do a lot more work than needed.  Ideally, there'd be something similar to _extract_tb_or_stack_iter() that doesn't call linecache.getline() -- it should just return triples of (filename, lineno, functionname), and enough structure to tell apart the __cause__, __context__, and __traceback__ (the first two possibly repeated).  Given this info it would be simple enough to format and log the actual traceback, and storing just this would take less space and time than computing the lines of the fully-formatted traceback.
History
Date User Action Args
2013-05-05 21:31:26gvanrossumsetrecipients: + gvanrossum
2013-05-05 21:31:26gvanrossumsetmessageid: <1367789486.16.0.484658151136.issue17911@psf.upfronthosting.co.za>
2013-05-05 21:31:26gvanrossumlinkissue17911 messages
2013-05-05 21:31:25gvanrossumcreate