python python中简单的小分析装饰器。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python python中简单的小分析装饰器。相关的知识,希望对你有一定的参考价值。

import cProfile
 
 
def profile_this(fn):
    def profiled_fn(*args, **kwargs):
        # name for profile dump
        fpath = fn.__name__ + '.profile'
        prof = cProfile.Profile()
        ret = prof.runcall(fn, *args, **kwargs)
        prof.dump_stats(fpath)
        return ret
    return profiled_fn

以上是关于python python中简单的小分析装饰器。的主要内容,如果未能解决你的问题,请参考以下文章

Python 装饰器(装饰器的简单使用)

Python之简单理解装饰器

浅谈Python装饰器

python装饰器的简单理解

Python装饰器简单说明

Python装饰器简单说明