]> granicus.if.org Git - python/commitdiff
Fixed 5694: removed spurious test output in Distutils
authorTarek Ziadé <ziade.tarek@gmail.com>
Sun, 5 Apr 2009 18:31:24 +0000 (18:31 +0000)
committerTarek Ziadé <ziade.tarek@gmail.com>
Sun, 5 Apr 2009 18:31:24 +0000 (18:31 +0000)
Lib/distutils/tests/test_clean.py
Misc/NEWS

index a94a812b1fa2546e4864bab68c5fe29c7f4f3e75..3026032712ee1abfa587f9e20df01adfe21fd3c6 100755 (executable)
@@ -8,6 +8,7 @@ from distutils.command.clean import clean
 from distutils.tests import support
 
 class cleanTestCase(support.TempdirManager,
+                    support.LoggingSilencer,
                     unittest.TestCase):
 
     def test_simple_run(self):
index fd35fad312057ad564bff4a3a7ce386ec4836b8a..2cfd2922b771c79cbfabebd7f19b31d4b58dd834 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -212,6 +212,8 @@ Core and Builtins
 Library
 -------
 
+- Issue 5694: removed spurious test output in Distutils (test_clean).
+
 - Issue 5471: Fix os.path.expanduser() for $HOME set to '/'.
 
 - Issue 1326077: fix the formatting of SyntaxErrors by the traceback module.