我想编写一个能够编写html文件的类。我现在有以下骨架:
class ColorWheel(object):
def __init__(self, params):
self.params = params
def __enter__(self):
self.f = open('color_wheel.html', 'w')
self._write_header()
return self
def __exit__(self, type_unused, value_unused, traceback_unused):
self._write_footer()
self.f.close()
def wheel(self):
# Code here to write the body of the html file
self.f.write('BODY HERE')
我用这个类:
with ColorWheel(params) as cw:
cw.wheel()
文件完全按照我的预期编写。但是,当我运行它时,我收到以下错误:
Exception ValueError: 'I/O operation on closed file' in <bound method ColorWheel.__del__ of ColorWheel.ColorWheel object at 0x0456A330>> ignored
我认为它已经关闭时试图关闭文件。它是否正确?如果是这样,关闭文件的正确方法是什么?
答案 0 :(得分:5)
在关闭文件后,您还有一个__del__
方法尝试写。当cw
超出范围并被清除时,将调用__del__
挂钩,并且您似乎在此时尝试写入该文件。
您可以使用以下方法测试文件是否已关闭:
if not self.f.closed:
# do something with file