summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-05-06 16:14:47 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-05-06 16:14:47 (GMT)
commit24d3b7f9df574b3e3859f20825f2b96730380fc9 (patch)
treeaed800d4cbf935e21a9cbef82d4f1bef03ba2fc5 /Misc
parent8d0f620285d160c454e024c6da0fbf1686264aed (diff)
parente130503c7bc87023d20a353e2ab5081983a40917 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0b47d8a..336038b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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).