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.py does not handle --trace
Type: behavior Stage: resolved
Components: Tests Versions: Python 3.2, Python 3.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: meador.inge Nosy List: meador.inge, python-dev
Priority: low Keywords: easy, patch

Created on 2012-01-14 17:42 by meador.inge, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
regrtest-remove-unhandled-trace-longoption.patch meador.inge, 2012-01-14 17:42
Messages (3)
msg151260 - (view) Author: Meador Inge (meador.inge) * (Python committer) Date: 2012-01-14 17:42
While fixing issue13725 I noticed that there is a long option for 'trace', but it is not actually handled:

[meadori@motherbrain cpython]$ ./python -m test --trace
No handler for option --trace.  Please report this as a bug at http://bugs.python.org.

I will commit the attached patch shortly.
msg151261 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-01-14 17:56
New changeset a32bc62b8772 by Meador Inge in branch '3.2':
Issue #13786: Remove unimplemented 'trace' long option from regrtest.py.
http://hg.python.org/cpython/rev/a32bc62b8772

New changeset 9b14b04a0cdd by Meador Inge in branch 'default':
Issue #13786: Remove unimplemented 'trace' long option from regrtest.py.
http://hg.python.org/cpython/rev/9b14b04a0cdd
msg151262 - (view) Author: Meador Inge (meador.inge) * (Python committer) Date: 2012-01-14 17:56
Fixed.
History
Date User Action Args
2022-04-11 14:57:25adminsetgithub: 57995
2012-01-14 17:56:49meador.ingesetstatus: open -> closed
resolution: fixed
messages: + msg151262

stage: commit review -> resolved
2012-01-14 17:56:18python-devsetnosy: + python-dev
messages: + msg151261
2012-01-14 17:42:51meador.ingecreate