Issue #9815: assertRaises now tries to clear references to local variables in the exception's traceback.

This commit is contained in:
Antoine Pitrou 2014-04-29 01:23:50 +02:00
parent 871dfc41d3
commit 9681022f1e
3 changed files with 37 additions and 0 deletions

View file

@ -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.