Make it clear that the msg argument to assertWarns/assertWarnsRegex/assertRaisesRegex...
authorBenjamin Peterson <benjamin@python.org>
Wed, 3 Oct 2018 04:38:39 +0000 (21:38 -0700)
committerGitHub <noreply@github.com>
Wed, 3 Oct 2018 04:38:39 +0000 (21:38 -0700)
A follow up to be4e5b89204283a62e369439025f00362d0424f6.

Doc/library/unittest.rst

index da8ce4082043b0a9cfe1620b178cbbe8743ce214..83aee1b0262176eef767277b8e55698f77df19ba 100644 (file)
@@ -984,7 +984,7 @@ Test cases
 
 
    .. method:: assertRaisesRegex(exception, regex, callable, *args, **kwds)
-               assertRaisesRegex(exception, regex, msg=None)
+               assertRaisesRegex(exception, regex, *, msg=None)
 
       Like :meth:`assertRaises` but also tests that *regex* matches
       on the string representation of the raised exception.  *regex* may be
@@ -1010,7 +1010,7 @@ Test cases
 
 
    .. method:: assertWarns(warning, callable, *args, **kwds)
-               assertWarns(warning, msg=None)
+               assertWarns(warning, *, msg=None)
 
       Test that a warning is triggered when *callable* is called with any
       positional or keyword arguments that are also passed to
@@ -1051,7 +1051,7 @@ Test cases
 
 
    .. method:: assertWarnsRegex(warning, regex, callable, *args, **kwds)
-               assertWarnsRegex(warning, regex, msg=None)
+               assertWarnsRegex(warning, regex, *, msg=None)
 
       Like :meth:`assertWarns` but also tests that *regex* matches on the
       message of the triggered warning.  *regex* may be a regular expression