From: Antoine Pitrou Date: Mon, 28 Apr 2014 23:25:07 +0000 (+0200) Subject: Issue #9815: assertRaises now tries to clear references to local variables in the... X-Git-Tag: v3.5.0a1~1777 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b1e58440f87f921bd51396f4e9a4b18dcd2def6b;p=python Issue #9815: assertRaises now tries to clear references to local variables in the exception's traceback. --- b1e58440f87f921bd51396f4e9a4b18dcd2def6b diff --cc Misc/NEWS index 4539f4d268,3975afa462..c7115719fc --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -60,10 -39,9 +60,13 @@@ Core and Builtin Library ------- + - Issue #9815: assertRaises now tries to clear references to local variables + in the exception's traceback. + +- Issue #19940: ssl.cert_time_to_seconds() now interprets the given time + string in the UTC timezone (as specified in RFC 5280), not the local + timezone. + - Issue #13204: Calling sys.flags.__new__ would crash the interpreter, now it raises a TypeError.