From 2cdacd74955387638ab860e8662215d4c800cb90 Mon Sep 17 00:00:00 2001 From: Hirokazu Yamamoto Date: Sat, 18 Sep 2010 03:54:32 +0000 Subject: [PATCH] Added missing BaseTest.tearDown(self). Fixed refleak. --- Lib/test/test_logging.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py index 00533b1920f..2630abbcad1 100644 --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -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"