The message "*** skipping leakage tests ***" was causing the test to
fail in a non-debug build. Only print this in verbose test mode.
diff --git a/Lib/test/test_csv.py b/Lib/test/test_csv.py
index 64456db..be9726f 100644
--- a/Lib/test/test_csv.py
+++ b/Lib/test/test_csv.py
@@ -6,6 +6,7 @@
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 @@
if not hasattr(sys, "gettotalrefcount"):
- print "*** skipping leakage tests ***"
+ if verbose: print "*** skipping leakage tests ***"
else:
class NUL:
def write(s, *args):