From: Serhiy Storchaka Date: Wed, 6 May 2015 16:14:47 +0000 (+0300) Subject: Issue #24134: assertRaises(), assertRaisesRegex(), assertWarns() and X-Git-Tag: v3.5.0b1~233 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=24d3b7f9df574b3e3859f20825f2b96730380fc9;p=python Issue #24134: assertRaises(), assertRaisesRegex(), assertWarns() and assertWarnsRegex() checks are not longer successful if the callable is None. Added tests for assertRaises(). --- 24d3b7f9df574b3e3859f20825f2b96730380fc9 diff --cc Misc/NEWS index 0b47d8a324,333aa43d88..336038beba --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -30,12 -42,9 +30,15 @@@ Core and Builtin Library ------- + - Issue #24134: assertRaises(), assertRaisesRegex(), assertWarns() and + assertWarnsRegex() checks are not longer successful if the callable is None. + +- Issue #23880: Tkinter's getint() and getdouble() now support Tcl_Obj. + Tkinter's getdouble() now supports any numbers (in particular int). + +- Issue #22619: Added negative limit support in the traceback module. + Based on patch by Dmitry Kazakov. + - Issue #24094: Fix possible crash in json.encode with poorly behaved dict subclasses.