Merged revisions 70308 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r70308 | tarek.ziade | 2009-03-11 13:48:04 +0100 (Wed, 11 Mar 2009) | 1 line

  Issue #5472: Fixed distutils.test_util tear down
........
This commit is contained in:
Tarek Ziadé 2009-03-11 12:52:00 +00:00
parent c59cd68847
commit 516db94459
2 changed files with 5 additions and 0 deletions

View File

@ -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

View File

@ -195,6 +195,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