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


Python monkey.is_module_patched方法代码示例

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


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

示例1: check_gevent_monkey_patch

# 需要导入模块: from gevent import monkey [as 别名]
# 或者: from gevent.monkey import is_module_patched [as 别名]
def check_gevent_monkey_patch(raise_exc=True):
    if not monkey.is_module_patched('socket'):  # 随便选一个检测标志
        if raise_exc:
            warnings.warn(f'检测到 你还没有打gevent包的猴子补丁,请在所运行的起始脚本第一行写上  【import gevent.monkey;gevent.monkey.patch_all()】  这句话。')
            raise Exception(f'检测到 你还没有打gevent包的猴子补丁,请在所运行的起始脚本第一行写上  【import gevent.monkey;gevent.monkey.patch_all()】  这句话。')
    else:
        return 1 
开发者ID:ydf0509,项目名称:distributed_framework,代码行数:9,代码来源:custom_gevent_pool_executor.py

示例2: _condition

# 需要导入模块: from gevent import monkey [as 别名]
# 或者: from gevent.monkey import is_module_patched [as 别名]
def _condition(self):
            from gevent import monkey
            if monkey.is_module_patched('threading') or self.done():
                import threading
                return threading.Condition()
            # We can only properly work with conditions
            # when we've been monkey-patched. This is necessary
            # for the wait/as_completed module functions.
            raise AttributeError("_condition") 
开发者ID:priyankark,项目名称:PhonePi_SampleServer,代码行数:11,代码来源:threadpool.py

示例3: initialize

# 需要导入模块: from gevent import monkey [as 别名]
# 或者: from gevent.monkey import is_module_patched [as 别名]
def initialize(self):
        super(KombuManager, self).initialize()

        monkey_patched = True
        if self.server.async_mode == 'eventlet':
            from eventlet.patcher import is_monkey_patched
            monkey_patched = is_monkey_patched('socket')
        elif 'gevent' in self.server.async_mode:
            from gevent.monkey import is_module_patched
            monkey_patched = is_module_patched('socket')
        if not monkey_patched:
            raise RuntimeError(
                'Kombu requires a monkey patched socket library to work '
                'with ' + self.server.async_mode) 
开发者ID:miguelgrinberg,项目名称:python-socketio,代码行数:16,代码来源:kombu_manager.py

示例4: initialize

# 需要导入模块: from gevent import monkey [as 别名]
# 或者: from gevent.monkey import is_module_patched [as 别名]
def initialize(self):
        super(RedisManager, self).initialize()

        monkey_patched = True
        if self.server.async_mode == 'eventlet':
            from eventlet.patcher import is_monkey_patched
            monkey_patched = is_monkey_patched('socket')
        elif 'gevent' in self.server.async_mode:
            from gevent.monkey import is_module_patched
            monkey_patched = is_module_patched('socket')
        if not monkey_patched:
            raise RuntimeError(
                'Redis requires a monkey patched socket library to work '
                'with ' + self.server.async_mode) 
开发者ID:miguelgrinberg,项目名称:python-socketio,代码行数:16,代码来源:redis_manager.py

示例5: is_module_patched

# 需要导入模块: from gevent import monkey [as 别名]
# 或者: from gevent.monkey import is_module_patched [as 别名]
def is_module_patched(*_, **__):
        return False 
开发者ID:weka-io,项目名称:easypy,代码行数:4,代码来源:gevent.py


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