summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_hotshot.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_hotshot.py')
-rw-r--r--Lib/test/test_hotshot.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/Lib/test/test_hotshot.py b/Lib/test/test_hotshot.py
index db3c914..2a45a7f 100644
--- a/Lib/test/test_hotshot.py
+++ b/Lib/test/test_hotshot.py
@@ -31,10 +31,7 @@ class UnlinkingLogReader(hotshot.log.LogReader):
try:
return hotshot.log.LogReader.next(self)
except (IndexError, StopIteration):
- # XXX This fails on Windows because the named file is still
- # XXX open. Offhand I couldn't find an appropriate way to close
- # XXX the file object, or even where the heck it is. LogReader
- # XXX in particular doesn't have a close() method.
+ self.close()
os.unlink(self.__logfn)
raise