This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: regrtest missing in the module name
Type: behavior Stage: resolved
Components: Documentation Versions: Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: Axel, berker.peksag, docs@python, python-dev
Priority: normal Keywords:

Created on 2016-03-30 11:19 by Axel, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (3)
msg262661 - (view) Author: Axel Luttgens (Axel) Date: 2016-03-30 11:19
Relevant page:

    https://docs.python.org/2/library/test.html

One may read (section 25.5.2):

    Specifying all as the value for the -u option enables all
    possible resources: python -m test -uall.

I guess this should be:

    Specifying all as the value for the -u option enables all
    possible resources: python -m test.regrtest -uall.

HTH,
Axel
msg264352 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-04-27 05:57
New changeset 2ef61a4747eb by Berker Peksag in branch '2.7':
Issue #26672: Fix regrtest example in test.rst
https://hg.python.org/cpython/rev/2ef61a4747eb
msg264353 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2016-04-27 05:58
Good catch, thanks for the report!
History
Date User Action Args
2022-04-11 14:58:29adminsetgithub: 70859
2016-04-27 05:58:37berker.peksagsetstatus: open -> closed

type: enhancement -> behavior

nosy: + berker.peksag
messages: + msg264353
resolution: fixed
stage: resolved
2016-04-27 05:57:58python-devsetnosy: + python-dev
messages: + msg264352
2016-03-30 11:19:11Axelcreate