summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2012-04-11 20:11:53 -0400
committerR David Murray <rdmurray@bitdance.com>2012-04-11 20:11:53 -0400
commit43d8ff016b7deb68bbfb76bd8d97b1045ec0619f (patch)
tree95b8ec789e1467863668b0ca3186e02716f0f374 /Doc
parentb7e40c38eac5160ad8d18a8ee2ef1f79a86b9aea (diff)
downloadcpython-43d8ff016b7deb68bbfb76bd8d97b1045ec0619f.tar.gz
#14552: remove redundant wording in 'test' docs.
Original patch by Tshepang Lekhonkhobe.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/test.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/test.rst b/Doc/library/test.rst
index c27ee08b58..0185a09525 100644
--- a/Doc/library/test.rst
+++ b/Doc/library/test.rst
@@ -171,9 +171,9 @@ whether the test passed or failed and thus minimize output.
Running :mod:`test` directly allows what resources are available for
tests to use to be set. You do this by using the ``-u`` command-line
-option. Run :program:`python -m test -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
+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 -uall,-audio,-largefile`
will run :mod:`test` with all resources except the ``audio`` and