From: R. David Murray Date: Mon, 19 Oct 2009 16:15:22 +0000 (+0000) Subject: The stdout from tests is no longer compared against anything (not even X-Git-Tag: v3.2a1~2371 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=769d8190225e0969e4f6c81e0d3c4d5ad73a7918;p=thirdparty%2FPython%2Fcpython.git The stdout from tests is no longer compared against anything (not even to make sure it is empty), so eliminate the message that says running under verbose is different from running without it. --- diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index 586b8da37a7d..a1c93d49f89d 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -548,9 +548,6 @@ def main(tests=None, testdir=None, verbose=0, quiet=False, if not bad and not skipped and len(good) > 1: print("All", end=' ') print(count(len(good), "test"), "OK.") - if verbose: - print("CAUTION: stdout isn't compared in verbose mode:") - print("a test that passes in verbose mode may fail without it.") if print_slow: test_times.sort(reverse=True) print("10 slowest tests:")