[Python-checkins] r85527 - python/branches/py3k/Doc/library/test.rst

senthil.kumaran python-checkins at python.org
Fri Oct 15 17:21:25 CEST 2010


Author: senthil.kumaran
Date: Fri Oct 15 17:21:19 2010
New Revision: 85527

Log:
Fix a minor docs bug.



Modified:
   python/branches/py3k/Doc/library/test.rst

Modified: python/branches/py3k/Doc/library/test.rst
==============================================================================
--- python/branches/py3k/Doc/library/test.rst	(original)
+++ python/branches/py3k/Doc/library/test.rst	Fri Oct 15 17:21:19 2010
@@ -262,7 +262,7 @@
    path to the file.
 
 
-.. function:: run_unittest(*classes)
+.. function:: run_unittest(\*classes)
 
    Execute :class:`unittest.TestCase` subclasses passed to the function. The
    function scans the classes for methods starting with the prefix ``test_``
@@ -279,7 +279,7 @@
    This will run all tests defined in the named module.
 
 
-.. function:: check_warnings(*filters, quiet=True)
+.. function:: check_warnings(\*filters, quiet=True)
 
    A convenience wrapper for :func:`warnings.catch_warnings()` that makes it
    easier to test that a warning was correctly raised.  It is approximately


More information about the Python-checkins mailing list