summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-04-28 23:23:50 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2014-04-28 23:23:50 (GMT)
commit9681022f1ee5c6c9160c515b24d2a3d1efe8b90d (patch)
treec1d1cfd55d9b22733b4655b31324a3c33d136de8 /Misc
parent871dfc41d37b02a7af6eb03028edc6702f24fd1d (diff)
downloadcpython-9681022f1ee5c6c9160c515b24d2a3d1efe8b90d.zip
cpython-9681022f1ee5c6c9160c515b24d2a3d1efe8b90d.tar.gz
cpython-9681022f1ee5c6c9160c515b24d2a3d1efe8b90d.tar.bz2
Issue #9815: assertRaises now tries to clear references to local variables in the exception's traceback.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 856520f..3975afa 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -39,6 +39,9 @@ Core and Builtins
Library
-------
+- Issue #9815: assertRaises now tries to clear references to local variables
+ in the exception's traceback.
+
- Issue #13204: Calling sys.flags.__new__ would crash the interpreter,
now it raises a TypeError.