""" t3EOF.py Defines an EOF_Block class. As this is a particularly boring type of block, it doesn't do much. """ from t3Block import * class EOF_Block(Block): """ The EOF block, which should be the final block in any t3 file. """ name = "EOF Block" def __init__(self, datastream, image, attribs): Block.__init__(self, datastream, image, attribs) self.read_block() def read_block(self): """ As an EOF block should always be empty, this does nothing. """ return