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

andrew.kuchling python-checkins at python.org
Fri Apr 30 03:32:47 CEST 2010


Author: andrew.kuchling
Date: Fri Apr 30 03:32:47 2010
New Revision: 80645

Log:
Markup fix; clarify by adding 'in that order'

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	Fri Apr 30 03:32:47 2010
@@ -273,8 +273,9 @@
    -t directory     Top level directory of project (default to
                     start directory)
 
-The -s, -p, & -t options can be passed in as positional arguments. The
-following two command lines are equivalent::
+The :option:`-s`, :option:`-p`, and :option:`-t` options can be passed in
+as positional arguments in that order. The following two command lines
+are equivalent::
 
    python -m unittest discover -s project_directory -p '*_test.py'
    python -m unittest discover project_directory '*_test.py'


More information about the Python-checkins mailing list