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


Python flags.DEFINE_spaceseplist方法代码示例

本文整理汇总了Python中absl.flags.DEFINE_spaceseplist方法的典型用法代码示例。如果您正苦于以下问题:Python flags.DEFINE_spaceseplist方法的具体用法?Python flags.DEFINE_spaceseplist怎么用?Python flags.DEFINE_spaceseplist使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在absl.flags的用法示例。


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

示例1: test_flag_help_in_xml_space_separated_list

# 需要导入模块: from absl import flags [as 别名]
# 或者: from absl.flags import DEFINE_spaceseplist [as 别名]
def test_flag_help_in_xml_space_separated_list(self):
    flags.DEFINE_spaceseplist('dirs', 'src libs bin',
                              'Directories to search.', flag_values=self.fv)
    expected_separators = sorted(string.whitespace)
    expected_output = (
        '<flag>\n'
        '  <file>tool</file>\n'
        '  <name>dirs</name>\n'
        '  <meaning>Directories to search.</meaning>\n'
        '  <default>src libs bin</default>\n'
        '  <current>[\'src\', \'libs\', \'bin\']</current>\n'
        '  <type>whitespace separated list of strings</type>\n'
        'LIST_SEPARATORS'
        '</flag>\n').replace('LIST_SEPARATORS',
                             _list_separators_in_xmlformat(expected_separators,
                                                           indent='  '))
    self._check_flag_help_in_xml('dirs', 'tool', expected_output) 
开发者ID:abseil,项目名称:abseil-py,代码行数:19,代码来源:flags_helpxml_test.py

示例2: test_flag_help_in_xml_space_separated_list_with_comma_compat

# 需要导入模块: from absl import flags [as 别名]
# 或者: from absl.flags import DEFINE_spaceseplist [as 别名]
def test_flag_help_in_xml_space_separated_list_with_comma_compat(self):
    flags.DEFINE_spaceseplist('dirs', 'src libs,bin',
                              'Directories to search.', comma_compat=True,
                              flag_values=self.fv)
    expected_separators = sorted(string.whitespace + ',')
    expected_output = (
        '<flag>\n'
        '  <file>tool</file>\n'
        '  <name>dirs</name>\n'
        '  <meaning>Directories to search.</meaning>\n'
        '  <default>src libs bin</default>\n'
        '  <current>[\'src\', \'libs\', \'bin\']</current>\n'
        '  <type>whitespace or comma separated list of strings</type>\n'
        'LIST_SEPARATORS'
        '</flag>\n').replace('LIST_SEPARATORS',
                             _list_separators_in_xmlformat(expected_separators,
                                                           indent='  '))
    self._check_flag_help_in_xml('dirs', 'tool', expected_output) 
开发者ID:abseil,项目名称:abseil-py,代码行数:20,代码来源:flags_helpxml_test.py


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