gpt4 book ai didi

python - 如何使用inspect从Python中的被调用者那里获取调用者的信息?

转载 作者:IT老高 更新时间:2023-10-28 21:37:45 26 4
gpt4 key购买 nike

我需要从被调用者那里获取调用者信息(什么文件/什么行)。我了解到我可以为此目的使用 inpect 模块,但不完全是。

如何通过检查获取这些信息?或者有没有其他方法可以获取信息?

import inspect

print __file__
c=inspect.currentframe()
print c.f_lineno

def hello():
print inspect.stack
?? what file called me in what line?

hello()

最佳答案

调用者的帧比当前帧高一帧。您可以使用inspect.currentframe().f_back找到调用者的框架。然后使用 inspect.getframeinfo获取调用者的文件名和行号。

import inspect

def hello():
previous_frame = inspect.currentframe().f_back
(filename, line_number,
function_name, lines, index) = inspect.getframeinfo(previous_frame)
return (filename, line_number, function_name, lines, index)

print(hello())

# ('/home/unutbu/pybin/test.py', 10, '<module>', ['hello()\n'], 0)

关于python - 如何使用inspect从Python中的被调用者那里获取调用者的信息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3711184/

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