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: Lib/test/regrtest.py -ulib2to3 yield "Invalid -u option"
Type: Stage:
Components: Tests Versions: Python 3.1, Python 3.2, Python 2.7, Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: benjamin.peterson Nosy List: benjamin.peterson, flox, r.david.murray
Priority: normal Keywords:

Created on 2009-12-15 17:01 by flox, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (4)
msg96448 - (view) Author: Florent Xicluna (flox) * (Python committer) Date: 2009-12-15 17:01
~ $ ./python Lib/test/regrtest.py --help
(...)
    lib2to3 -   Run the tests for 2to3 (They take a while.)
(...)

~ $ ./python Lib/test/regrtest.py -ulib2to3
Invalid -u/--use option: lib2to3
Use --help for usage
msg96450 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2009-12-15 17:23
I see no sign that the resource is actually used by the lib2to3 test
suite, though it looks like there would be an opportunity for it to do
so (tests that are currently unconditionally skipped by
Lib/test/test_lib2to3).

Either the resource should be deleted from the help section of regrtest,
or it should be added to the list of resources and used by test_lib2to3.
 I'll let the determination of which up to Benjamin.
msg96474 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2009-12-16 03:27
Kill it.

2009/12/15 R. David Murray <report@bugs.python.org>:
>
> R. David Murray <rdmurray@bitdance.com> added the comment:
>
> I see no sign that the resource is actually used by the lib2to3 test
> suite, though it looks like there would be an opportunity for it to do
> so (tests that are currently unconditionally skipped by
> Lib/test/test_lib2to3).
>
> Either the resource should be deleted from the help section of regrtest,
> or it should be added to the list of resources and used by test_lib2to3.
>  I'll let the determination of which up to Benjamin.
>
> ----------
> assignee:  -> benjamin.peterson
> nosy: +benjamin.peterson, r.david.murray
>
> _______________________________________
> Python tracker <report@bugs.python.org>
> <http://bugs.python.org/issue7515>
> _______________________________________
>
msg96475 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2009-12-16 03:29
Done in r76851.
History
Date User Action Args
2022-04-11 14:56:55adminsetgithub: 51764
2009-12-16 03:29:51benjamin.petersonsetstatus: open -> closed
resolution: fixed
messages: + msg96475
2009-12-16 03:27:42benjamin.petersonsetmessages: + msg96474
2009-12-15 17:23:37r.david.murraysetassignee: benjamin.peterson

messages: + msg96450
nosy: + r.david.murray, benjamin.peterson
2009-12-15 17:01:53floxcreate