summaryrefslogtreecommitdiffstats
path: root/Lib/test/bisect_cmd.py
diff options
context:
space:
mode:
authorXtreak <tir.karthi@gmail.com>2019-05-02 02:49:50 (GMT)
committerVictor Stinner <vstinner@redhat.com>2019-05-02 02:49:49 (GMT)
commit11e4a941e9c6225776a986b05230a1963e83f4fb (patch)
treee2baedb524a20959ad9edc140c1d0ae254736f46 /Lib/test/bisect_cmd.py
parent671d782f8dc52942dc8c48a513bf24ff8465b112 (diff)
downloadcpython-11e4a941e9c6225776a986b05230a1963e83f4fb.zip
cpython-11e4a941e9c6225776a986b05230a1963e83f4fb.tar.gz
cpython-11e4a941e9c6225776a986b05230a1963e83f4fb.tar.bz2
Change bisect to bisect_cmd in docstring (#13040)
Diffstat (limited to 'Lib/test/bisect_cmd.py')
-rwxr-xr-xLib/test/bisect_cmd.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/bisect_cmd.py b/Lib/test/bisect_cmd.py
index 968537e..cb06480 100755
--- a/Lib/test/bisect_cmd.py
+++ b/Lib/test/bisect_cmd.py
@@ -4,17 +4,17 @@ Command line tool to bisect failing CPython tests.
Find the test_os test method which alters the environment:
- ./python -m test.bisect --fail-env-changed test_os
+ ./python -m test.bisect_cmd --fail-env-changed test_os
Find a reference leak in "test_os", write the list of failing tests into the
"bisect" file:
- ./python -m test.bisect -o bisect -R 3:3 test_os
+ ./python -m test.bisect_cmd -o bisect -R 3:3 test_os
Load an existing list of tests from a file using -i option:
./python -m test --list-cases -m FileTests test_os > tests
- ./python -m test.bisect -i tests test_os
+ ./python -m test.bisect_cmd -i tests test_os
"""
import argparse