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


Python Config.getParser方法代码示例

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


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

示例1: autohelp_directive

# 需要导入模块: from nose.config import Config [as 别名]
# 或者: from nose.config.Config import getParser [as 别名]
def autohelp_directive(dirname, arguments, options, content, lineno,
                       content_offset, block_text, state, state_machine):
    """produces rst from nose help"""
    config = Config(parserClass=OptBucket,
                    plugins=BuiltinPluginManager())
    parser = config.getParser(TestProgram.usage())
    rst = ViewList()
    for line in parser.format_help().split('\n'):
        rst.append(line, '<autodoc>')

    rst.append('Options', '<autodoc>')
    rst.append('-------', '<autodoc>')
    rst.append('', '<autodoc>')
    for opt in parser:
        rst.append(opt.options(), '<autodoc>')
        rst.append('   \n', '<autodoc>')
        rst.append('   ' + opt.help + '\n', '<autodoc>')
        rst.append('\n', '<autodoc>')    
    node = nodes.section()
    node.document = state.document
    surrounding_title_styles = state.memo.title_styles
    surrounding_section_level = state.memo.section_level
    state.memo.title_styles = []
    state.memo.section_level = 0
    state.nested_parse(rst, 0, node, match_titles=1)
    state.memo.title_styles = surrounding_title_styles
    state.memo.section_level = surrounding_section_level

    return node.children
开发者ID:mindw,项目名称:nose,代码行数:31,代码来源:pluginopts.py

示例2: nose_has_option

# 需要导入模块: from nose.config import Config [as 别名]
# 或者: from nose.config.Config import getParser [as 别名]
 def nose_has_option(self, optname):
     from nose.config import Config
     optname = '--' + optname
     nose_config = Config()
     parser = nose_config.getParser()
     return parser.get_option(optname) is not None
开发者ID:jasonbaker,项目名称:envb-site-commands,代码行数:8,代码来源:nosetests.py


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