[Python-checkins] r71253 - in python/trunk: Lib/distutils/tests/test_clean.py Misc/NEWS

tarek.ziade python-checkins at python.org
Sun Apr 5 20:31:24 CEST 2009


Author: tarek.ziade
Date: Sun Apr  5 20:31:24 2009
New Revision: 71253

Log:
Fixed 5694: removed spurious test output in Distutils

Modified:
   python/trunk/Lib/distutils/tests/test_clean.py
   python/trunk/Misc/NEWS

Modified: python/trunk/Lib/distutils/tests/test_clean.py
==============================================================================
--- python/trunk/Lib/distutils/tests/test_clean.py	(original)
+++ python/trunk/Lib/distutils/tests/test_clean.py	Sun Apr  5 20:31:24 2009
@@ -8,6 +8,7 @@
 from distutils.tests import support
 
 class cleanTestCase(support.TempdirManager,
+                    support.LoggingSilencer,
                     unittest.TestCase):
 
     def test_simple_run(self):

Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS	(original)
+++ python/trunk/Misc/NEWS	Sun Apr  5 20:31:24 2009
@@ -212,6 +212,8 @@
 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.


More information about the Python-checkins mailing list