def unprepare(self, datastructure):
    # Remove costly things already stored from the datastructure
    try:
        del datastructure[self.getWidgetId()]
    except KeyError:
        # unprepare may be called several times
        pass
from Products.CPSSchemas.BasicWidgets import CPSFileWidget
CPSFileWidget.unprepare = unprepare
