From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Thu, 2 May 2019 03:01:41 +0000 (-0700) Subject: Change bisect to bisect_cmd in docstring (GH-13040) X-Git-Tag: v2.7.17rc1~87 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=74852b9794f65e8f605373b5b2ccbb6ec660d3d6;p=thirdparty%2FPython%2Fcpython.git Change bisect to bisect_cmd in docstring (GH-13040) (cherry picked from commit 11e4a941e9c6225776a986b05230a1963e83f4fb) Co-authored-by: Xtreak --- diff --git a/Lib/test/bisect_cmd.py b/Lib/test/bisect_cmd.py index 1bf32ef06dd9..5028ed214fc9 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 """ from __future__ import print_function