关于python分析的问题
我正在尝试用 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')
如果这看起来很奇怪,那是因为我已经尝试了一切来消除错误“名称 doProfile 未定义”。即使现在,runProfiler 方法也会被调用,并且会打印“runProfiler invoked”,但随后我收到了刚刚描述的错误。我做错了什么?
I'm trying to do profiling of my application in python. I'm using the cProfile library. I need to profile the onFrame function of my application, but this is called by an outside application. I've tried loads of things, but at the moment I have the following in my onFrame method:
runProfiler(self)
and then outside of my class I have the following:
o = None
def doProfile ():
print "doProfile invoked"
o.structure.updateOrders
def runProfiler(self):
print "runProfiler invoked"
o = self
cProfile.run('doProfile()', 'profile.log')
If this seems strange, it's because I've tried everything to get rid of the error "name doProfile not defined". Even now, the runProfiler method gets called, and the "runProfiler invoked" gets printed, but then I get the error just described. What am I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在这种情况下,您应该将必要的上下文传递给
cProfile.runctx
:
In that case, you should pass the necessary context to
cProfile.runctx
:另一种方法是使用
Profile
对象的runcall
方法。An alternative is to use the
runcall
method of aProfile
object.