From: Guido van Rossum Date: Fri, 20 Dec 1996 03:03:01 +0000 (+0000) Subject: Set test_support.verbose to 0, to signal tests only to generate X-Git-Tag: v1.5a1~684 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0a94cc788e6370ee1406e19ad53af6b0bbbc2c90;p=python Set test_support.verbose to 0, to signal tests only to generate portable output. --- diff --git a/Lib/test/autotest.py b/Lib/test/autotest.py index 67910344ce..94ae9c1137 100644 --- a/Lib/test/autotest.py +++ b/Lib/test/autotest.py @@ -42,6 +42,8 @@ import os import sys import getopt import traceback +import test_support +test_support.verbose = 0 from test_support import * # Exception raised when the test failed (not the same as in test_support)