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 arigo
Recipients arigo
Date 2014-12-08.14:26:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1418048778.92.0.0497543506697.issue23012@psf.upfronthosting.co.za>
In-reply-to
Content
It's not possible to write a settrace() or setprofile() function that remains active if we're about to run out of stack. If we are, we get a RuntimeError when the function is called. The RuntimeError is normally propagated, but in case it is eaten (e.g. see example) then the program continues to run normally --- but the trace/profile function is disabled from now on.
History
Date User Action Args
2014-12-08 14:26:18arigosetrecipients: + arigo
2014-12-08 14:26:18arigosetmessageid: <1418048778.92.0.0497543506697.issue23012@psf.upfronthosting.co.za>
2014-12-08 14:26:18arigolinkissue23012 messages
2014-12-08 14:26:18arigocreate