[Python-checkins] r71254 - in python/branches/py3k: Lib/distutils/tests/test_clean.py Misc/NEWS

tarek.ziade python-checkins at python.org
Sun Apr 5 20:33:34 CEST 2009


Author: tarek.ziade
Date: Sun Apr  5 20:33:34 2009
New Revision: 71254

Log:
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
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Lib/distutils/tests/test_clean.py
   python/branches/py3k/Misc/NEWS

Modified: python/branches/py3k/Lib/distutils/tests/test_clean.py
==============================================================================
--- python/branches/py3k/Lib/distutils/tests/test_clean.py	(original)
+++ python/branches/py3k/Lib/distutils/tests/test_clean.py	Sun Apr  5 20:33:34 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/branches/py3k/Misc/NEWS
==============================================================================
--- python/branches/py3k/Misc/NEWS	(original)
+++ python/branches/py3k/Misc/NEWS	Sun Apr  5 20:33:34 2009
@@ -327,6 +327,8 @@
 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


More information about the Python-checkins mailing list