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


Python config.valid_ident方法代码示例

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


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

示例1: valid_ident

# 需要导入模块: from logging import config [as 别名]
# 或者: from logging.config import valid_ident [as 别名]
def valid_ident(s):
        m = IDENTIFIER.match(s)
        if not m:
            raise ValueError('Not a valid Python identifier: %r' % s)
        return True


    # The ConvertingXXX classes are wrappers around standard Python containers,
    # and they serve to convert any suitable values in the container. The
    # conversion converts base dicts, lists and tuples to their wrapped
    # equivalents, whereas strings which match a conversion format are converted
    # appropriately.
    #
    # Each wrapper should have a configurator attribute holding the actual
    # configurator to use for conversion. 
开发者ID:Frank-qlu,项目名称:recruit,代码行数:17,代码来源:compat.py

示例2: configure_custom

# 需要导入模块: from logging import config [as 别名]
# 或者: from logging.config import valid_ident [as 别名]
def configure_custom(self, config):
            """Configure an object with a user-supplied factory."""
            c = config.pop('()')
            if not callable(c):
                c = self.resolve(c)
            props = config.pop('.', None)
            # Check for valid identifiers
            kwargs = dict([(k, config[k]) for k in config if valid_ident(k)])
            result = c(**kwargs)
            if props:
                for name, value in props.items():
                    setattr(result, name, value)
            return result 
开发者ID:Frank-qlu,项目名称:recruit,代码行数:15,代码来源:compat.py


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