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


Python six.callable方法代码示例

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


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

示例1: _verify_is_callable

# 需要导入模块: from botocore.compat import six [as 别名]
# 或者: from botocore.compat.six import callable [as 别名]
def _verify_is_callable(self, func):
        if not six.callable(func):
            raise ValueError("Event handler %s must be callable." % func) 
开发者ID:skarlekar,项目名称:faces,代码行数:5,代码来源:hooks.py

示例2: _verify_accept_kwargs

# 需要导入模块: from botocore.compat import six [as 别名]
# 或者: from botocore.compat.six import callable [as 别名]
def _verify_accept_kwargs(self, func):
        """Verifies a callable accepts kwargs

        :type func: callable
        :param func: A callable object.

        :returns: True, if ``func`` accepts kwargs, otherwise False.

        """
        try:
            if not accepts_kwargs(func):
                raise ValueError("Event handler %s must accept keyword "
                                 "arguments (**kwargs)" % func)
        except TypeError:
            return False 
开发者ID:skarlekar,项目名称:faces,代码行数:17,代码来源:hooks.py

示例3: _validate_subscriber_methods

# 需要导入模块: from botocore.compat import six [as 别名]
# 或者: from botocore.compat.six import callable [as 别名]
def _validate_subscriber_methods(cls):
        for subscriber_type in cls.VALID_SUBSCRIBER_TYPES:
            subscriber_method = getattr(cls, 'on_' + subscriber_type)
            if not six.callable(subscriber_method):
                raise InvalidSubscriberMethodError(
                    'Subscriber method %s must be callable.' %
                    subscriber_method)

            if not accepts_kwargs(subscriber_method):
                raise InvalidSubscriberMethodError(
                    'Subscriber method %s must accept keyword '
                    'arguments (**kwargs)' % subscriber_method) 
开发者ID:skarlekar,项目名称:faces,代码行数:14,代码来源:subscribers.py


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