diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-05-06 16:14:47 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-05-06 16:14:47 (GMT) |
commit | 24d3b7f9df574b3e3859f20825f2b96730380fc9 (patch) | |
tree | aed800d4cbf935e21a9cbef82d4f1bef03ba2fc5 /Misc | |
parent | 8d0f620285d160c454e024c6da0fbf1686264aed (diff) | |
parent | e130503c7bc87023d20a353e2ab5081983a40917 (diff) | |
download | cpython-24d3b7f9df574b3e3859f20825f2b96730380fc9.zip cpython-24d3b7f9df574b3e3859f20825f2b96730380fc9.tar.gz cpython-24d3b7f9df574b3e3859f20825f2b96730380fc9.tar.bz2 |
Issue #24134: assertRaises(), assertRaisesRegex(), assertWarns() and
assertWarnsRegex() checks are not longer successful if the callable is None.
Added tests for assertRaises().
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -30,6 +30,9 @@ Core and Builtins 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). |