当前位置: 首页>>代码示例>>Python>>正文


Python archive_util.ARCHIVE_FORMATS类代码示例

本文整理汇总了Python中distutils.archive_util.ARCHIVE_FORMATS的典型用法代码示例。如果您正苦于以下问题:Python ARCHIVE_FORMATS类的具体用法?Python ARCHIVE_FORMATS怎么用?Python ARCHIVE_FORMATS使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了ARCHIVE_FORMATS类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_show_formats

    def test_show_formats(self):
        with captured_stdout() as stdout:
            show_formats()

        # the output should be a header line + one line per format
        num_formats = len(ARCHIVE_FORMATS.keys())
        output = [line for line in stdout.getvalue().split("\n") if line.strip().startswith("--formats=")]
        self.assertEqual(len(output), num_formats)
开发者ID:francois-wellenreiter,项目名称:cpython,代码行数:8,代码来源:test_sdist.py

示例2: show_formats

def show_formats():
    """Print all possible values for the 'formats' option (used by
    the "--help-formats" command-line option).
    """
    from distutils.fancy_getopt import FancyGetopt
    from distutils.archive_util import ARCHIVE_FORMATS

    formats = []
    for format in ARCHIVE_FORMATS.keys():
        formats.append(("formats=" + format, None, ARCHIVE_FORMATS[format][2]))
    formats.sort()
    FancyGetopt(formats).print_help("List of available source distribution formats:")
开发者ID:henrywoo,项目名称:Python3.1.3-Linux,代码行数:12,代码来源:sdist.py

示例3: test_show_formats

 def test_show_formats(self):
     with captured_stdout() as stdout:
         show_formats()
     num_formats = len(ARCHIVE_FORMATS.keys())
     output = [ line for line in stdout.getvalue().split('\n') if line.strip().startswith('--formats=') ]
     self.assertEqual(len(output), num_formats)
开发者ID:webiumsk,项目名称:WOT-0.9.15.1,代码行数:6,代码来源:test_sdist.py

示例4:

"""distutils.command.sdist
开发者ID:mcyril,项目名称:ravel-ftn,代码行数:1,代码来源:sdist.py


注:本文中的distutils.archive_util.ARCHIVE_FORMATS类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。