[Python-checkins] Change bisect to bisect_cmd in docstring (GH-13040)

Miss Islington (bot) webhook-mailer at python.org
Wed May 1 23:10:16 EDT 2019


https://github.com/python/cpython/commit/0ff08b061b2075ba258672409764face21321412
commit: 0ff08b061b2075ba258672409764face21321412
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2019-05-01T20:10:12-07:00
summary:

Change bisect to bisect_cmd in docstring (GH-13040)

(cherry picked from commit 11e4a941e9c6225776a986b05230a1963e83f4fb)

Co-authored-by: Xtreak <tir.karthi at gmail.com>

files:
M Lib/test/bisect_cmd.py

diff --git a/Lib/test/bisect_cmd.py b/Lib/test/bisect_cmd.py
index 968537e0f801..cb06480e7c91 100755
--- a/Lib/test/bisect_cmd.py
+++ b/Lib/test/bisect_cmd.py
@@ -4,17 +4,17 @@
 
 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



More information about the Python-checkins mailing list