diff options
author | Andrew Kuchling <amk@amk.ca> | 2013-09-15 22:15:56 (GMT) |
---|---|---|
committer | Andrew Kuchling <amk@amk.ca> | 2013-09-15 22:15:56 (GMT) |
commit | 173a157e725579eec1f28f8c9d53d6761ba6c79f (patch) | |
tree | 98be7afea0a4f929f07193d94ffe86cc0e7739e0 /Misc | |
parent | 8408dc581e2baaa306b57f14486cfa013fd68c68 (diff) | |
download | cpython-173a157e725579eec1f28f8c9d53d6761ba6c79f.zip cpython-173a157e725579eec1f28f8c9d53d6761ba6c79f.tar.gz cpython-173a157e725579eec1f28f8c9d53d6761ba6c79f.tar.bz2 |
#1565525: Add traceback.clear_frames() helper function to clear locals ref'd by a traceback
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -32,6 +32,11 @@ Library faulthandler module if the variable is non-empty. Same behaviour than other variables like :envvar:`PYTHONDONTWRITEBYTECODE`. +- Issue #1565525: New function ``traceback.clear_frames`` will clear + the local variables of all the stack frames referenced by a traceback + object. + + Tests ----- |