栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

跳过-with-块的执行

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

跳过-with-块的执行

如果您想要一个临时解决方案,它使用withhacks(特别是来自AnonymousBlocksInPython)的思想,那么它将起作用:

import sysimport inspectclass My_Context(object):    def __init__(self,mode=0):        """        if mode = 0, proceed as normal        if mode = 1, do not execute block        """        self.mode=mode    def __enter__(self):        if self.mode==1: print 'Met block-skipping criterion ...' # Do some magic sys.settrace(lambda *args, **keys: None) frame = inspect.currentframe(1) frame.f_trace = self.trace    def trace(self, frame, event, arg):        raise    def __exit__(self, type, value, traceback):        print 'Exiting context ...'        return True

比较以下内容:

with My_Context(mode=1):    print 'Executing block of pre ...'

with My_Context(mode=0):    print 'Executing block of pre ... '


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/668996.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号