summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-04-05 18:31:24 +0000
committerTarek Ziadé <ziade.tarek@gmail.com>2009-04-05 18:31:24 +0000
commit453d953f3e15970ea2b69c96fd490cdbf66948a3 (patch)
treec986f4f9082ed22430e8672d250e7f178bd01e3f
parent1ede0d670f19e62dfc702253cec9f47865dc9674 (diff)
downloadcpython-git-453d953f3e15970ea2b69c96fd490cdbf66948a3.tar.gz
Fixed 5694: removed spurious test output in Distutils
-rwxr-xr-xLib/distutils/tests/test_clean.py1
-rw-r--r--Misc/NEWS2
2 files changed, 3 insertions, 0 deletions
diff --git a/Lib/distutils/tests/test_clean.py b/Lib/distutils/tests/test_clean.py
index a94a812b1f..3026032712 100755
--- a/Lib/distutils/tests/test_clean.py
+++ b/Lib/distutils/tests/test_clean.py
@@ -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):
diff --git a/Misc/NEWS b/Misc/NEWS
index fd35fad312..2cfd2922b7 100644
--- 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.