diff options
| author | R David Murray <rdmurray@bitdance.com> | 2012-04-11 20:15:10 -0400 |
|---|---|---|
| committer | R David Murray <rdmurray@bitdance.com> | 2012-04-11 20:15:10 -0400 |
| commit | df7ac0619563e3e92efadf3e429c58d3fb4b5016 (patch) | |
| tree | 5dbc1b286b41f06b3e1ae79aaa88302e45c376af /Doc | |
| parent | d268109ae32bfadabc0ab75fcb4528f50fde5a87 (diff) | |
| parent | e7bade568ebb04c607caf0cfce02a36765dad02e (diff) | |
| download | cpython-git-df7ac0619563e3e92efadf3e429c58d3fb4b5016.tar.gz | |
Merge doc fixes #14553 and #14552.
Diffstat (limited to 'Doc')
| -rw-r--r-- | Doc/library/http.server.rst | 2 | ||||
| -rw-r--r-- | Doc/library/test.rst | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/http.server.rst b/Doc/library/http.server.rst index d9aaa728bf..06670b8d48 100644 --- a/Doc/library/http.server.rst +++ b/Doc/library/http.server.rst @@ -352,7 +352,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 diff --git a/Doc/library/test.rst b/Doc/library/test.rst index 152b7b144f..8b998f6740 100644 --- a/Doc/library/test.rst +++ b/Doc/library/test.rst @@ -172,9 +172,9 @@ only print whether the test passed or failed. 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 |
