From: Terry Jan Reedy Date: Fri, 11 Apr 2014 18:11:11 +0000 (-0400) Subject: Issue #21170: Removed invalid parameter names from unittest doc. X-Git-Tag: v3.4.1rc1~106 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f98021cff276a02cc4bbee76747c57d1f3e7921b;p=python Issue #21170: Removed invalid parameter names from unittest doc. Patch by Kushal Das. --- diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 690c98b75d..fbeaf7f2cd 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -1807,14 +1807,14 @@ Loading and running tests Called after the test case *test* has been executed, regardless of the outcome. - .. method:: startTestRun(test) + .. method:: startTestRun() Called once before any tests are executed. .. versionadded:: 3.1 - .. method:: stopTestRun(test) + .. method:: stopTestRun() Called once after all tests are executed.