How to use the diffoscope.comparators.utils.filenames.get_compressed_content_name function in diffoscope

To help you get started, we’ve selected a few diffoscope examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github anthraxx / diffoscope / diffoscope / comparators / bzip2.py View on Github external
def get_member_names(self):
        return [get_compressed_content_name(self.source.path, '.bz2')]
github anthraxx / diffoscope / diffoscope / comparators / rust.py View on Github external
def get_member_names(self):
        return [get_compressed_content_name(self.source.path, '.deflate')]
github anthraxx / diffoscope / diffoscope / comparators / xz.py View on Github external
def get_member_names(self):
        return [get_compressed_content_name(self.source.path, '.xz')]
github anthraxx / diffoscope / diffoscope / comparators / dex.py View on Github external
def get_member_names(self):
        return [get_compressed_content_name(self.source.path, '.dex') + '.jar']
github anthraxx / diffoscope / diffoscope / comparators / gzip.py View on Github external
def get_member_names(self):
        return [get_compressed_content_name(self.source.path, '.gz')]