def __init__(self, filename):
if not isinstance(filename, string_types):
raise TypeError('ReopenableZipFile filename must be a string')
zipfile.ZipFile.__init__(self, filename)
assert self.filename == filename
self.close()
评论列表
文章目录