summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2002-07-17 23:52:58 (GMT)
committerTim Peters <tim.peters@gmail.com>2002-07-17 23:52:58 (GMT)
commitba8c069eb90cb6f26bc7746f56074603071d7bd2 (patch)
tree25070b35dc1cd6f33d9c970259980822242b3f04 /Lib/test
parentf31ff27c57c4233a6ecde48e58322c3e3fc128f9 (diff)
downloadcpython-ba8c069eb90cb6f26bc7746f56074603071d7bd2.zip
cpython-ba8c069eb90cb6f26bc7746f56074603071d7bd2.tar.gz
cpython-ba8c069eb90cb6f26bc7746f56074603071d7bd2.tar.bz2
test_hotshot fails on Windows now. Added XXX comment explaining why,
and that I don't know how to fix it. Fred?
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_hotshot.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test_hotshot.py b/Lib/test/test_hotshot.py
index ebd2aaa..db3c914 100644
--- a/Lib/test/test_hotshot.py
+++ b/Lib/test/test_hotshot.py
@@ -31,6 +31,10 @@ 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.
os.unlink(self.__logfn)
raise