mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Added missing BaseTest.tearDown(self). Fixed refleak.
This commit is contained in:
parent
0c25b45bd8
commit
2cdacd7495
1 changed files with 1 additions and 0 deletions
|
@ -1802,6 +1802,7 @@ class BaseFileTest(BaseTest):
|
||||||
def tearDown(self):
|
def tearDown(self):
|
||||||
for fn in self.rmfiles:
|
for fn in self.rmfiles:
|
||||||
os.unlink(fn)
|
os.unlink(fn)
|
||||||
|
BaseTest.tearDown(self)
|
||||||
|
|
||||||
def assertLogFile(self, filename):
|
def assertLogFile(self, filename):
|
||||||
"Assert a log file is there and register it for deletion"
|
"Assert a log file is there and register it for deletion"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue