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


Python directives.choice方法代码示例

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


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

示例1: choice

# 需要导入模块: from docutils.parsers.rst import directives [as 别名]
# 或者: from docutils.parsers.rst.directives import choice [as 别名]
def choice(argument, values):
    """
    Directive option utility function, supplied to enable options whose
    argument must be a member of a finite set of possible values (must be
    lower case).  A custom conversion function must be written to use it.  For
    example::

        from docutils.parsers.rst import directives

        def yesno(argument):
            return directives.choice(argument, ('yes', 'no'))

    Raise ``ValueError`` if no argument is found or if the argument's value is
    not valid (not an entry in the supplied list).
    """
    try:
        value = argument.lower().strip()
    except AttributeError:
        raise ValueError('must supply an argument; choose from %s'
                         % format_values(values))
    if value in values:
        return value
    else:
        raise ValueError('"%s" unknown; choose from %s'
                         % (argument, format_values(values))) 
开发者ID:skarlekar,项目名称:faces,代码行数:27,代码来源:__init__.py

示例2: align_spec

# 需要导入模块: from docutils.parsers.rst import directives [as 别名]
# 或者: from docutils.parsers.rst.directives import choice [as 别名]
def align_spec(argument):
    # type: (Any) -> bool
    return directives.choice(argument, ('left', 'center', 'right')) 
开发者ID:kevinpt,项目名称:symbolator,代码行数:5,代码来源:symbolator_sphinx.py

示例3: align

# 需要导入模块: from docutils.parsers.rst import directives [as 别名]
# 或者: from docutils.parsers.rst.directives import choice [as 别名]
def align(argument):
    return directives.choice(argument, ('left', 'center', 'right')) 
开发者ID:skarlekar,项目名称:faces,代码行数:4,代码来源:tables.py

示例4: backlinks

# 需要导入模块: from docutils.parsers.rst import directives [as 别名]
# 或者: from docutils.parsers.rst.directives import choice [as 别名]
def backlinks(arg):
        value = directives.choice(arg, Contents.backlinks_values)
        if value == 'none':
            return None
        else:
            return value 
开发者ID:skarlekar,项目名称:faces,代码行数:8,代码来源:parts.py

示例5: align

# 需要导入模块: from docutils.parsers.rst import directives [as 别名]
# 或者: from docutils.parsers.rst.directives import choice [as 别名]
def align(argument):
        # This is not callable as self.align.  We cannot make it a
        # staticmethod because we're saving an unbound method in
        # option_spec below.
        return directives.choice(argument, Image.align_values) 
开发者ID:skarlekar,项目名称:faces,代码行数:7,代码来源:images.py

示例6: _option_format

# 需要导入模块: from docutils.parsers.rst import directives [as 别名]
# 或者: from docutils.parsers.rst.directives import choice [as 别名]
def _option_format(arg):
    return directives.choice(arg, ('python', 'doctest')) 
开发者ID:ktraunmueller,项目名称:Computable,代码行数:4,代码来源:plot_directive.py

示例7: _option_align

# 需要导入模块: from docutils.parsers.rst import directives [as 别名]
# 或者: from docutils.parsers.rst.directives import choice [as 别名]
def _option_align(arg):
    return directives.choice(arg, ("top", "middle", "bottom", "left", "center",
                                   "right")) 
开发者ID:ktraunmueller,项目名称:Computable,代码行数:5,代码来源:plot_directive.py

示例8: fontset_choice

# 需要导入模块: from docutils.parsers.rst import directives [as 别名]
# 或者: from docutils.parsers.rst.directives import choice [as 别名]
def fontset_choice(arg):
    return directives.choice(arg, ['cm', 'stix', 'stixsans']) 
开发者ID:ktraunmueller,项目名称:Computable,代码行数:4,代码来源:mathmpl.py


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