[Python-checkins] r84874 - python/branches/py3k/Lib/test/test_logging.py

hirokazu.yamamoto python-checkins at python.org
Sat Sep 18 05:54:32 CEST 2010


Author: hirokazu.yamamoto
Date: Sat Sep 18 05:54:32 2010
New Revision: 84874

Log:
Added missing BaseTest.tearDown(self). Fixed refleak.

Modified:
   python/branches/py3k/Lib/test/test_logging.py

Modified: python/branches/py3k/Lib/test/test_logging.py
==============================================================================
--- python/branches/py3k/Lib/test/test_logging.py	(original)
+++ python/branches/py3k/Lib/test/test_logging.py	Sat Sep 18 05:54:32 2010
@@ -1802,6 +1802,7 @@
     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"


More information about the Python-checkins mailing list