使用CPROFILE介绍带有装饰器的代码的结果很奇怪

发布于 2025-01-21 06:08:50 字数 872 浏览 0 评论 0原文

因此,我使用Cprofile和Snakeviz来详细说明我的代码。我的代码具有装饰器,这似乎使Cprofile结果不是很正确:

我的代码:

import time
import decorator


@decorator.decorator
def my_deco(f, *args, **kwargs):
    ret = f(*args, **kwargs)
    return ret

def a():
    time.sleep(2)
    b()
    c()

@my_deco
def b():
    time.sleep(3)
    d()

@my_deco
def c():
    time.sleep(1)
    d()
    
@my_deco
def d():
    time.sleep(3)


if __name__ == "__main__":
    a()

没有装饰器的分析(预期行为): 在这种情况下,b,c处于同一水平,并且d bellow。

用装饰师进行分析(不想要行为): 在这种情况下,B,C和D处于同一级别。

So i'm using cProfile and snakeviz to profil my code. My code has decorator which seems to make the cProfile results not very correct :

my code :

import time
import decorator


@decorator.decorator
def my_deco(f, *args, **kwargs):
    ret = f(*args, **kwargs)
    return ret

def a():
    time.sleep(2)
    b()
    c()

@my_deco
def b():
    time.sleep(3)
    d()

@my_deco
def c():
    time.sleep(1)
    d()
    
@my_deco
def d():
    time.sleep(3)


if __name__ == "__main__":
    a()

profiling without decorator (expected behavior) :
In this case, b, c are at the same level and d bellow.

enter image description here

profiling with decorator (not wanted behavior) :
In this case, b, c and d are at the same level.

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文