def warn(self, msg): # suppress missing-file warnings from sdist if not msg.startswith("standard file not found:"): sdist.warn(self, msg)
def warn(self, msg): if not self._should_suppress_warning(msg): sdist.warn(self, msg)