From 644cabed4b6b60187ce3fab756a7d700cc906a7c Mon Sep 17 00:00:00 2001 From: R David Murray Date: Wed, 11 Apr 2012 20:11:53 -0400 Subject: #14552: remove redundant wording in 'test' docs. Original patch by Tshepang Lekhonkhobe. --- Doc/library/test.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Doc/library/test.rst b/Doc/library/test.rst index c27ee08..0185a09 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 -- cgit v0.12 From e7bade568ebb04c607caf0cfce02a36765dad02e Mon Sep 17 00:00:00 2001 From: R David Murray Date: Wed, 11 Apr 2012 20:13:25 -0400 Subject: #14553: fix word order. Patch by Tshepang Lekhonkhobe. --- Doc/library/http.server.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/http.server.rst b/Doc/library/http.server.rst index e3a3a10..2281c30 100644 --- a/Doc/library/http.server.rst +++ b/Doc/library/http.server.rst @@ -333,7 +333,7 @@ the current directory. :: httpd.serve_forever() :mod:`http.server` can also be invoked directly using the :option:`-m` -switch of the interpreter a with ``port number`` argument. Similar to +switch of the interpreter with a ``port number`` argument. Similar to the previous example, this serves files relative to the current directory. :: python -m http.server 8000 -- cgit v0.12