summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/tests/test_dir_util.py
diff options
context:
space:
mode:
authorHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-05-29 09:14:04 (GMT)
committerHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-05-29 09:14:04 (GMT)
commit2703fd9134e46146df51b1af383632d5769faebd (patch)
treebaa1f86f14d3027064a7e1b1f978c979d7c745ce /Lib/distutils/tests/test_dir_util.py
parent2bcde144ae79c72de05196f7da4ed32396e398d6 (diff)
downloadcpython-2703fd9134e46146df51b1af383632d5769faebd.zip
cpython-2703fd9134e46146df51b1af383632d5769faebd.tar.gz
cpython-2703fd9134e46146df51b1af383632d5769faebd.tar.bz2
Merged revisions 73008 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r73008 | tarek.ziade | 2009-05-29 17:08:07 +0900 | 1 line Fixed #6131: test_modulefinder leaked when run after test_distutils ........
Diffstat (limited to 'Lib/distutils/tests/test_dir_util.py')
-rw-r--r--Lib/distutils/tests/test_dir_util.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/tests/test_dir_util.py b/Lib/distutils/tests/test_dir_util.py
index 6b22f05..0f694aa 100644
--- a/Lib/distutils/tests/test_dir_util.py
+++ b/Lib/distutils/tests/test_dir_util.py
@@ -18,7 +18,7 @@ class DirUtilTestCase(support.TempdirManager, unittest.TestCase):
self._logs.append(msg)
def setUp(self):
- support.TempdirManager.setUp(self)
+ super(DirUtilTestCase, self).setUp()
self._logs = []
tmp_dir = self.mkdtemp()
self.root_target = os.path.join(tmp_dir, 'deep')
@@ -29,7 +29,7 @@ class DirUtilTestCase(support.TempdirManager, unittest.TestCase):
def tearDown(self):
log.info = self.old_log
- support.TempdirManager.tearDown(self)
+ super(DirUtilTestCase, self).tearDown()
def test_mkpath_remove_tree_verbosity(self):