Advertise “python -m” instead of direct filename.
authorÉric Araujo <merwok@netwok.org>
Thu, 16 Dec 2010 00:23:30 +0000 (00:23 +0000)
committerÉric Araujo <merwok@netwok.org>
Thu, 16 Dec 2010 00:23:30 +0000 (00:23 +0000)
Doc/library/test.rst

index bcce69020aeed14e4641ce302a99b78cdadb3112..b327d2d427ded3876ca6c348f7fc37a997447baa 100644 (file)
@@ -168,14 +168,14 @@ whether 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. Run :program:`python regrtest.py -uall` to turn on all
+option. Run :program:`python -m 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
 comma-separated list of resources that are not desired may be listed after
-``all``. The command :program:`python regrtest.py -uall,-audio,-largefile`
+``all``. The command :program:`python -m regrtest -uall,-audio,-largefile`
 will run :mod:`test.regrtest` with all resources except the ``audio`` and
 ``largefile`` resources. For a list of all resources and more command-line
-options, run :program:`python regrtest.py -h`.
+options, run :program:`python -m regrtest -h`.
 
 Some other ways to execute the regression tests depend on what platform the
 tests are being executed on. On Unix, you can run :program:`make test` at the