]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Added missing BaseTest.tearDown(self). Fixed refleak.
authorHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>
Sat, 18 Sep 2010 03:54:32 +0000 (03:54 +0000)
committerHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>
Sat, 18 Sep 2010 03:54:32 +0000 (03:54 +0000)
Lib/test/test_logging.py

index 00533b1920f85261bd9309115409c730a86ef7eb..2630abbcad1ff609cf194cda189d0a00e80227d4 100644 (file)
@@ -1802,6 +1802,7 @@ class BaseFileTest(BaseTest):
     def tearDown(self):
         for fn in self.rmfiles:
             os.unlink(fn)
+        BaseTest.tearDown(self)
 
     def assertLogFile(self, filename):
         "Assert a log file is there and register it for deletion"