From e3d1df0646977d9576d4d760facd03285cb015b5 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 21 Mar 2003 01:15:58 +0000 Subject: The message "*** skipping leakage tests ***" was causing the test to fail in a non-debug build. Only print this in verbose test mode. --- Lib/test/test_csv.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Lib/test/test_csv.py') diff --git a/Lib/test/test_csv.py b/Lib/test/test_csv.py index 64456db482..be9726fe7d 100644 --- a/Lib/test/test_csv.py +++ b/Lib/test/test_csv.py @@ -6,6 +6,7 @@ import unittest from StringIO import StringIO from csv import csv import gc +from test.test_support import verbose class Test_Csv(unittest.TestCase): """ @@ -533,7 +534,7 @@ class TestDialectValidity(unittest.TestCase): if not hasattr(sys, "gettotalrefcount"): - print "*** skipping leakage tests ***" + if verbose: print "*** skipping leakage tests ***" else: class NUL: def write(s, *args): -- cgit v1.2.1