Issue #10775: assertRaises, assertRaisesRegex, assertWarns, and assertWarnsRegex now accept a keyword argument 'msg' when used as context managers. Initial patch by Winston Ewert.
diff --git a/Misc/ACKS b/Misc/ACKS
index 3516b1c..d296ea1 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -269,6 +269,7 @@
Tim Everett
Paul Everitt
David Everly
+Winston Ewert
Greg Ewing
Martijn Faassen
Clovis Fabricio
diff --git a/Misc/NEWS b/Misc/NEWS
index 5cf9ac6..b0d6836 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -140,6 +140,10 @@
Library
-------
+- Issue #10775: assertRaises, assertRaisesRegex, assertWarns, and
+ assertWarnsRegex now accept a keyword argument 'msg' when used as context
+ managers. Initial patch by Winston Ewert.
+
- Issue #10684: shutil.move used to delete a folder on case insensitive
filesystems when the source and destination name where the same except
for the case.