ultratb.py 文件源码

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

项目:blender 作者: gastrodia 项目源码 文件源码
def with_patch_inspect(f):
    """decorator for monkeypatching inspect.findsource"""

    def wrapped(*args, **kwargs):
        save_findsource = inspect.findsource
        save_getargs = inspect.getargs
        inspect.findsource = findsource
        inspect.getargs = getargs
        try:
            return f(*args, **kwargs)
        finally:
            inspect.findsource = save_findsource
            inspect.getargs = save_getargs

    return wrapped
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号