gpt4 book ai didi

python - 关于python分析的问题

转载 作者:太空宇宙 更新时间:2023-11-04 06:30:01 24 4
gpt4 key购买 nike

我正在尝试用 Python 分析我的应用程序。我正在使用 cProfile 库。我需要分析我的应用程序的 onFrame 函数,但这是由外部应用程序调用的。我已经尝试了很多东西,但目前我的 onFrame 方法中有以下内容:

runProfiler(self)

然后在类之外我有以下内容:

o = None

def doProfile ():
print "doProfile invoked"
o.structure.updateOrders

def runProfiler(self):
print "runProfiler invoked"
o = self
cProfile.run('doProfile()', 'profile.log')

如果这看起来很奇怪,那是因为我已经尝试了所有方法来消除错误“name doProfile not defined”。即使是现在,runProfiler 方法也会被调用,并且会打印“runProfiler invoked”,但随后我会收到刚才描述的错误。我做错了什么?

最佳答案

在这种情况下,您应该将必要的上下文传递给 cProfile.runctx :

cProfile.runctx("doProfile()", globals(), locals(), "profile.log")

关于python - 关于python分析的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3981569/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com