summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_logging.py
diff options
context:
space:
mode:
authorHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2010-09-18 03:54:32 (GMT)
committerHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2010-09-18 03:54:32 (GMT)
commit2cdacd74955387638ab860e8662215d4c800cb90 (patch)
tree3de7bc1f76336dc070c3fea579a159e12e89b28d /Lib/test/test_logging.py
parent0c25b45bd8e8a18b3c0f13cdc54de68f17a87975 (diff)
downloadcpython-2cdacd74955387638ab860e8662215d4c800cb90.zip
cpython-2cdacd74955387638ab860e8662215d4c800cb90.tar.gz
cpython-2cdacd74955387638ab860e8662215d4c800cb90.tar.bz2
Added missing BaseTest.tearDown(self). Fixed refleak.
Diffstat (limited to 'Lib/test/test_logging.py')
-rw-r--r--Lib/test/test_logging.py1
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"