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 vstinner
Recipients benjamin.peterson, ghazel, vstinner
Date 2008-10-06.22:52:24
SpamBayes Score 7.3367873e-06
Marked as misclassified No
Message-id <1223333545.52.0.359177177629.issue4034@psf.upfronthosting.co.za>
In-reply-to
Content
Instead of converting tb_frame attribute to read only, I prefer to 
allow the user to clear the traceback to free some memory bytes. So I 
wrote a different patch.

marge$ ./python
Python 2.7a0 (trunk:66786M, Oct  7 2008, 00:48:32)
>>> try:
...  a
... except:
...  import sys
...  t, v, tb = sys.exc_info()
...
>>> tb
<traceback object at 0xb7c76edc>
>>> tb.tb_frame
<frame object at 0x81cdbec>
>>> tb.tb_frame=42
>>> tb.tb_frame
42
>>> tb.tb_frame=None
>>>
History
Date User Action Args
2008-10-06 22:52:25vstinnersetrecipients: + vstinner, ghazel, benjamin.peterson
2008-10-06 22:52:25vstinnersetmessageid: <1223333545.52.0.359177177629.issue4034@psf.upfronthosting.co.za>
2008-10-06 22:52:24vstinnerlinkissue4034 messages
2008-10-06 22:52:24vstinnercreate