diff options
author | Hirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp> | 2010-09-18 03:54:32 (GMT) |
---|---|---|
committer | Hirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp> | 2010-09-18 03:54:32 (GMT) |
commit | 2cdacd74955387638ab860e8662215d4c800cb90 (patch) | |
tree | 3de7bc1f76336dc070c3fea579a159e12e89b28d /Lib | |
parent | 0c25b45bd8e8a18b3c0f13cdc54de68f17a87975 (diff) | |
download | cpython-2cdacd74955387638ab860e8662215d4c800cb90.zip cpython-2cdacd74955387638ab860e8662215d4c800cb90.tar.gz cpython-2cdacd74955387638ab860e8662215d4c800cb90.tar.bz2 |
Added missing BaseTest.tearDown(self). Fixed refleak.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_logging.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py index 00533b1..2630abb 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" |