]> granicus.if.org Git - python/commitdiff
Change bisect to bisect_cmd in docstring (#13040)
authorXtreak <tir.karthi@gmail.com>
Thu, 2 May 2019 02:49:50 +0000 (08:19 +0530)
committerVictor Stinner <vstinner@redhat.com>
Thu, 2 May 2019 02:49:49 +0000 (22:49 -0400)
Lib/test/bisect_cmd.py

index 968537e0f8019f7fa7c880cae7bd356017013b31..cb06480e7c91fad0855c750ae5771b549952cafb 100755 (executable)
@@ -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