From 61585c260cb46b5918e1c3a3771ed17abec308f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tarek=20Ziad=C3=A9?= Date: Wed, 11 Mar 2009 12:48:04 +0000 Subject: [PATCH] Issue #5472: Fixed distutils.test_util tear down --- Lib/distutils/tests/test_util.py | 2 ++ Misc/NEWS | 3 +++ 2 files changed, 5 insertions(+) diff --git a/Lib/distutils/tests/test_util.py b/Lib/distutils/tests/test_util.py index ca586268a30..67474025d3a 100644 --- a/Lib/distutils/tests/test_util.py +++ b/Lib/distutils/tests/test_util.py @@ -53,6 +53,8 @@ class utilTestCase(unittest.TestCase): os.path.splitdrive = self.splitdrive if self.uname is not None: os.uname = self.uname + else: + del os.uname def _set_uname(self, uname): self._uname = uname diff --git a/Misc/NEWS b/Misc/NEWS index 5af7df7da0c..c9f77b9b158 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -171,6 +171,9 @@ Core and Builtins Library ------- +- Issue #5472: Fixed distutils.test_util tear down. Original patch by + Tim Golden. + - collections.deque() objects now have a read-only attribute called maxlen. - Issue #2638: Show a window constructed with tkSimpleDialog.Dialog only after