def get_unsuppressed_warnings(self):
        lReturn = []
        for oWarning in self.warnings:
            if not oWarning.is_suppressed():
                lReturn.append(oWarning)