[Python-checkins] r73712 - in python/trunk/Doc/library: macostools.rst unittest.rst

ezio.melotti python-checkins at python.org
Wed Jul 1 00:51:06 CEST 2009


Author: ezio.melotti
Date: Wed Jul  1 00:51:06 2009
New Revision: 73712

Log:
Fixed defaultTestCase -> defaultTestResult

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

Modified: python/trunk/Doc/library/macostools.rst
==============================================================================
--- python/trunk/Doc/library/macostools.rst	(original)
+++ python/trunk/Doc/library/macostools.rst	Wed Jul  1 00:51:06 2009
@@ -59,8 +59,8 @@
 have incompatible behaviour in some cases.
 
 
-:mod:`findertools` --- The :program:`finder`'s Apple Events interface
-=====================================================================
+:mod:`findertools` --- The :program:`finder`\'s Apple Events interface
+======================================================================
 
 .. module:: findertools
    :platform: Mac

Modified: python/trunk/Doc/library/unittest.rst
==============================================================================
--- python/trunk/Doc/library/unittest.rst	(original)
+++ python/trunk/Doc/library/unittest.rst	Wed Jul  1 00:51:06 2009
@@ -651,8 +651,8 @@
 
       Run the test, collecting the result into the test result object passed as
       *result*.  If *result* is omitted or :const:`None`, a temporary result
-      object is created (by calling the :meth:`defaultTestCase` method) and
-      used; this result object is not returned to :meth:`run`'s caller.
+      object is created (by calling the :meth:`defaultTestResult` method) and
+      used. The result object is not returned to :meth:`run`'s caller.
 
       The same effect may be had by simply calling the :class:`TestCase`
       instance.


More information about the Python-checkins mailing list