我使用以下代码在被调用方法中获取调用者的方法名称:
import inspect
def B():
outerframe = inspect.currentframe().f_back
functionname = outerframe.f_code.co_name
docstring = ??
return "caller's name: {0}, docsting: {1}".format(functionname, docstring)
def A():
"""docstring for A"""
return B()
print A()
但我也想在被调用的方法中从调用者的方法中获取文档字符串。我怎么做?