Lines Matching full:formats
22 """Print all possible values for the 'formats' option (used by
23 the "--help-formats" command-line option).
27 formats = []
29 formats.append(("formats=" + format, None,
31 formats.sort()
32 FancyGetopt(formats).print_help(
33 "List of available source distribution formats:")
68 ('formats=', None,
69 "formats for source distribution (comma-separated list)"),
90 ('help-formats', None,
91 "list available distribution formats", show_formats),
115 self.formats = ['gztar']
130 self.ensure_string_list('formats')
132 bad_format = archive_util.check_archive_formats(self.formats)
464 archive files (according to 'self.formats') from the release tree.
477 if 'tar' in self.formats:
478 self.formats.append(self.formats.pop(self.formats.index('tar')))
480 for fmt in self.formats: