Source code for pyvex.lifting.post_processor # # The post-processor base class # [docs] class Postprocessor: [docs] def __init__(self, irsb): self.irsb = irsb [docs] def postprocess(self): """ Modify the irsb All of the postprocessors will be used in the order that they are registered """ pass