util.py 文件源码

python
阅读 22 收藏 0 点赞 0 评论 0

项目:deb-python-rcssmin 作者: openstack 项目源码 文件源码
def humanbool(name, value):
    """
    Determine human boolean value

    :Parameters:
      `name` : ``str``
        The config key (used for error message)

      `value` : ``str``
        The config value

    :Return: The boolean value
    :Rtype: ``bool``

    :Exceptions:
      - `ValueError` : The value could not be recognized
    """
    try:
        return _util.strtobool(str(value).strip().lower() or 'no')
    except ValueError:
        raise ValueError("Unrecognized config value: %s = %s" % (name, value))
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号