[Python-checkins] test.bisect: Update from master, fix typos (#7311)

Victor Stinner webhook-mailer at python.org
Fri Jun 1 08:32:39 EDT 2018


https://github.com/python/cpython/commit/8f7bd307ce54570275700523532c1e098ce67b60
commit: 8f7bd307ce54570275700523532c1e098ce67b60
branch: 3.6
author: Victor Stinner <vstinner at redhat.com>
committer: GitHub <noreply at github.com>
date: 2018-06-01T14:32:36+02:00
summary:

test.bisect: Update from master, fix typos (#7311)

files:
M Lib/test/bisect.py

diff --git a/Lib/test/bisect.py b/Lib/test/bisect.py
index 0fd577d4e561..968537e0f801 100755
--- a/Lib/test/bisect.py
+++ b/Lib/test/bisect.py
@@ -38,7 +38,7 @@ def write_tests(filename, tests):
 def write_output(filename, tests):
     if not filename:
         return
-    print("Write %s tests into %s" % (len(tests), filename))
+    print("Writing %s tests into %s" % (len(tests), filename))
     write_tests(filename, tests)
     return filename
 
@@ -133,11 +133,11 @@ def main():
             print("ran %s tests/%s" % (ntest, len(tests)))
             print("exit", exitcode)
             if exitcode:
-                print("Tests failed: use this new subtest")
+                print("Tests failed: continuing with this subtest")
                 tests = subtests
                 output = write_output(args.output, tests)
             else:
-                print("Tests succeeded: skip this subtest, try a new subbset")
+                print("Tests succeeded: skipping this subtest, trying a new subset")
             print()
             iteration += 1
     except KeyboardInterrupt:



More information about the Python-checkins mailing list