Lines Matching full:formats
23 """Print all possible values for the 'formats' option (used by
24 the "--help-formats" command-line option).
28 formats = []
30 formats.append(("formats=" + format, None,
32 formats.sort()
33 FancyGetopt(formats).print_help(
34 "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),
116 self.formats = None
131 self.ensure_string_list('formats')
132 if self.formats is None:
134 self.formats = [self.default_format[os.name]]
140 bad_format = archive_util.check_archive_formats(self.formats)
446 archive files (according to 'self.formats') from the release tree.
459 if 'tar' in self.formats:
460 self.formats.append(self.formats.pop(self.formats.index('tar')))
462 for fmt in self.formats: