[Python-checkins] Add missing whatsnew entry for TestCase.assertNoLogs (GH-22317)

Mark Dickinson webhook-mailer at python.org
Sat Sep 19 16:38:15 EDT 2020


https://github.com/python/cpython/commit/c8c70e78762315643fcd132911bad38842a3e8af
commit: c8c70e78762315643fcd132911bad38842a3e8af
branch: master
author: Mark Dickinson <mdickinson at enthought.com>
committer: GitHub <noreply at github.com>
date: 2020-09-19T21:38:11+01:00
summary:

Add missing whatsnew entry for TestCase.assertNoLogs (GH-22317)

files:
M Doc/whatsnew/3.10.rst
M Misc/ACKS

diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst
index f6f276a8bfa49..ce888fec1d8c9 100644
--- a/Doc/whatsnew/3.10.rst
+++ b/Doc/whatsnew/3.10.rst
@@ -145,6 +145,13 @@ Add :data:`sys.orig_argv` attribute: the list of the original command line
 arguments passed to the Python executable.
 (Contributed by Victor Stinner in :issue:`23427`.)
 
+unittest
+--------
+
+Add new method :meth:`~unittest.TestCase.assertNoLogs` to complement the
+existing :meth:`~unittest.TestCase.assertLogs`. (Contributed by Kit Yan Choi
+in :issue:`39385`.)
+
 xml
 ---
 
diff --git a/Misc/ACKS b/Misc/ACKS
index d5bdb084a1e1e..d23797a2f5557 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -306,6 +306,7 @@ Albert Chin-A-Young
 Adal Chiriliuc
 Matt Chisholm
 Lita Cho
+Kit Yan Choi
 Sayan Chowdhury
 Yuan-Chao Chou
 Anders Chrigström



More information about the Python-checkins mailing list