[Python-checkins] cpython (2.7): Issue #21170: Removed invalid parameter names from unittest doc.

terry.reedy python-checkins at python.org
Fri Apr 11 20:12:10 CEST 2014


http://hg.python.org/cpython/rev/c1ea2846a564
changeset:   90219:c1ea2846a564
branch:      2.7
parent:      90214:d08e3586dde3
user:        Terry Jan Reedy <tjreedy at udel.edu>
date:        Fri Apr 11 14:11:00 2014 -0400
summary:
  Issue #21170: Removed invalid parameter names from unittest doc.
Patch by Kushal Das.

files:
  Doc/library/unittest.rst |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst
--- a/Doc/library/unittest.rst
+++ b/Doc/library/unittest.rst
@@ -1687,14 +1687,14 @@
       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:: 2.7
 
 
-   .. method:: stopTestRun(test)
+   .. method:: stopTestRun()
 
       Called once after all tests are executed.
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list