diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-04-27 05:58:32 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-04-27 05:58:32 (GMT) |
commit | b6886505a607e40ba4de7adeedb371c321f5f9aa (patch) | |
tree | e9fcddf0ecb6252637a8153aa712550902e0b97d /Doc | |
parent | 11cc513e8b8cdf290a4c790631c27f9a923bcf7d (diff) | |
download | cpython-b6886505a607e40ba4de7adeedb371c321f5f9aa.zip cpython-b6886505a607e40ba4de7adeedb371c321f5f9aa.tar.gz cpython-b6886505a607e40ba4de7adeedb371c321f5f9aa.tar.bz2 |
Issue #26672: Fix regrtest example in test.rst
Reported by Axel Luttgens.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/test.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/test.rst b/Doc/library/test.rst index 6872d5f..be5a9e9 100644 --- a/Doc/library/test.rst +++ b/Doc/library/test.rst @@ -171,7 +171,7 @@ 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 ``-u`` command-line option. Specifying ``all`` as the value for the ``-u`` option enables all -possible resources: :program:`python -m test -uall`. +possible resources: :program:`python -m test.regrtest -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` |