diff options
author | Martin Panter <vadmium+py@gmail.com> | 2015-10-07 11:01:47 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2015-10-07 11:01:47 (GMT) |
commit | 3f930dcd8725078c1655f09ca9bea0889e999fd6 (patch) | |
tree | 3b4079f251261009de434a8a42904a1438b50b94 /Doc/library/test.rst | |
parent | 397625e43280c1dec19af59c53704e0d95b557d5 (diff) | |
parent | 9955a373a8ae5a3ac9108afc436199277fdedff7 (diff) | |
download | cpython-3f930dcd8725078c1655f09ca9bea0889e999fd6.zip cpython-3f930dcd8725078c1655f09ca9bea0889e999fd6.tar.gz cpython-3f930dcd8725078c1655f09ca9bea0889e999fd6.tar.bz2 |
Merge typo fixes from 3.4 into 3.5
Diffstat (limited to 'Doc/library/test.rst')
-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 f7ad475..85cab3b 100644 --- a/Doc/library/test.rst +++ b/Doc/library/test.rst @@ -160,7 +160,7 @@ Running tests using the command-line interface The :mod:`test` package can be run as a script to drive Python's regression test suite, thanks to the :option:`-m` option: :program:`python -m test`. Under the hood, it uses :mod:`test.regrtest`; the call :program:`python -m -test.regrtest` used in previous Python versions still works). Running the +test.regrtest` used in previous Python versions still works. Running the script by itself automatically starts running all regression tests in the :mod:`test` package. It does this by finding all modules in the package whose name starts with ``test_``, importing them, and executing the function |