[Python-checkins] r79900 - python/trunk/Doc/library/unittest.rst

michael.foord python-checkins at python.org
Thu Apr 8 06:33:20 CEST 2010


Author: michael.foord
Date: Thu Apr  8 06:33:20 2010
New Revision: 79900

Log:
Correction of unittest documentation typos and omissions

Modified:
   python/trunk/Doc/library/unittest.rst

Modified: python/trunk/Doc/library/unittest.rst
==============================================================================
--- python/trunk/Doc/library/unittest.rst	(original)
+++ python/trunk/Doc/library/unittest.rst	Thu Apr  8 06:33:20 2010
@@ -794,7 +794,7 @@
 
 
    .. method:: assertAlmostEqual(first, second[, places[, msg[, delta]]])
-               failUnlessAlmostEqual(first, second[, places[, msg]])
+               failUnlessAlmostEqual(first, second[, places[, msg[, delta]]])
 
       Test that *first* and *second* are approximately equal by computing the
       difference, rounding to the given number of decimal *places* (default 7),
@@ -819,7 +819,7 @@
 
 
    .. method:: assertNotAlmostEqual(first, second[, places[, msg[, delta]]])
-               failIfAlmostEqual(first, second[, places[, msg]])
+               failIfAlmostEqual(first, second[, places[, msg[, delta]]])
 
       Test that *first* and *second* are not approximately equal by computing
       the difference, rounding to the given number of decimal *places* (default
@@ -1654,7 +1654,7 @@
 
       ``_makeResult()`` instantiates the class or callable passed in the
       ``TextTestRunner`` constructor as the ``resultclass`` argument. It
-      defaults to :class::`TextTestResult` if no ``resultclass`` is provided.
+      defaults to :class:`TextTestResult` if no ``resultclass`` is provided.
       The result class is instantiated with the following arguments::
 
             stream, descriptions, verbosity


More information about the Python-checkins mailing list