From ea26163c6a7d6ec69e76a25d6349afd40409a986 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tarek=20Ziad=C3=A9?= Date: Sun, 5 Apr 2009 18:33:34 +0000 Subject: [PATCH] Merged revisions 71253 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r71253 | tarek.ziade | 2009-04-05 20:31:24 +0200 (Sun, 05 Apr 2009) | 1 line Fixed 5694: removed spurious test output in Distutils ........ --- Lib/distutils/tests/test_clean.py | 1 + Misc/NEWS | 2 ++ 2 files changed, 3 insertions(+) diff --git a/Lib/distutils/tests/test_clean.py b/Lib/distutils/tests/test_clean.py index a94a812b1fa..3026032712e 100755 --- a/Lib/distutils/tests/test_clean.py +++ b/Lib/distutils/tests/test_clean.py @@ -8,6 +8,7 @@ from distutils.tests import support class cleanTestCase(support.TempdirManager, + support.LoggingSilencer, unittest.TestCase): def test_simple_run(self): diff --git a/Misc/NEWS b/Misc/NEWS index 27438ec171f..df308a0cafc 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -327,6 +327,8 @@ Core and Builtins Library ------- +- Issue 5694: removed spurious test output in Distutils (test_clean). + - Issue 1326077: fix the formatting of SyntaxErrors by the traceback module. - Issue #1665206 (partially): Move imports in cgitb to the top of the module