[Python-checkins] cpython (2.7): #14552: remove redundant wording in 'test' docs.

r.david.murray python-checkins at python.org
Thu Apr 12 02:41:07 CEST 2012


http://hg.python.org/cpython/rev/d60ef141e090
changeset:   76261:d60ef141e090
branch:      2.7
parent:      76254:5d5573d94988
user:        R David Murray <rdmurray at bitdance.com>
date:        Wed Apr 11 20:38:45 2012 -0400
summary:
  #14552: remove redundant wording in 'test' docs.

Original patch by Tshepang Lekhonkhobe.

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


diff --git a/Doc/library/test.rst b/Doc/library/test.rst
--- a/Doc/library/test.rst
+++ b/Doc/library/test.rst
@@ -169,10 +169,10 @@
 the test passed or failed and thus minimize output.
 
 Running :mod:`test.regrtest` directly allows what resources are available for
-tests to use to be set. You do this by using the :option:`-u` command-line
-option. Run :program:`python -m test.regrtest -uall` to turn on all
-resources; specifying ``all`` as an option for ``-u`` enables all
-possible resources. If all but one resource is desired (a more common case), a
+tests to use to be set. You do this by using the ``-u`` command-line
+option. Specifying ``all`` as the value for the ``-u`` option enables all
+possible resources: :program:`python -m test -uall`.
+If all but one resource is desired (a more common case), a
 comma-separated list of resources that are not desired may be listed after
 ``all``. The command :program:`python -m test.regrtest -uall,-audio,-largefile`
 will run :mod:`test.regrtest` with all resources except the ``audio`` and

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


More information about the Python-checkins mailing list