我正在尝试跟踪给定函数的函数调用层次结构(回溯),但是要以某种方式允许我获取对将函数作为属性的类的引用。获取类实例的引用也很好。
如果我有一个类A
的对象,该对象具有函数do_work
并且函数do_work
调用了函数f
,我想知道在f
内部A
的实例称为它。
当前,使用inspect
模块可以正确调用函数,但是其中不包含对将函数作为属性的类或对象实例的任何引用:
import inspect
class A:
def __init__(self, name):
self.name = name
def do_work(self):
return f()
def f():
return inspect.stack()
a = A("test")
print(a.do_work())
[
FrameInfo(frame=<... line 13, code f>, code_context=['return inspect.stack()'])
FrameInfo(frame=<..., line 9, code do_work>, code_context=['return f()']),
FrameInfo(frame=<..., line 17, code <module>>, code_context=['print(a.do_work())'])
]
我想从f
获得对a
对象实例或至少对A
类的引用。
答案 0 :(得分:1)
给出您感兴趣的框架的FrameInfo:
frame_info = inspect.stack()[1]
# FrameInfo(frame=<frame at 0x107b959d8, file ..., line 8, code do_work>, filename='...', lineno=8, function='do_work', code_context=[' return f()\\n'], index=0)
您可以通过以下方式访问a
对象(在该帧中称为self
):
frame_info.frame.f_locals['self']
# <__main__.A object at 0x107b86a20>
及其类名using:
frame_info.frame.f_locals['self'].__class__.__name__
# A