我想创建一个函数,只要调用者获得错误实例的参数,就会调用该函数,这将打印调用者的__doc__
属性并退出。功能如下:
def checktype(objects,instances):
if not all([isinstance(obj,instance) for
obj,instance in zip(objects,instances)]):
print 'Type Error'
#Get __doc__ from caller
print __doc__
exit()
我陷入了困境,我必须获得__doc__
属性。我知道inspect
模块可以通过以下方式执行此操作:
name=inspect.stack()[1][3]
possibles=globals().copy()
__doc__= possibles.get(name).__doc__
(你可以建议另一个与每个Python版本兼容的,包括3.5)
但我认为必须有另一种方式。我怀疑的原因是内置的return
语句以直接的方式向调用者返回一些东西,这意味着子函数必须有一个“钩子”或“管道”,这是被用作与父母进行信息交流的媒介。引起我兴趣的最初问题是:
这个管道是否只发送,没有信息可以向后发送?
我无法回答这个问题,因为return
声明仅在我搜索的网站中进行了简要说明。除此之外,就我所知,inspect
模块将多个帧保存在堆栈中并在后台持续运行。对我来说,这就像我试图用迷你枪杀死一只苍蝇。我只需要调用函数的名称,而不是之前的10帧函数。如果没有任何方法可以实现这一点,那么在我看来,这是Python必须具备的功能。我的问题是:
在Python中获得调用者属性的pythonic编程方法是什么?具有通用支持?对不起,如果我的问题无知,我愿意接受任何更正和“思想开放”。谢谢大家的答案。
答案 0 :(得分:0)
我有一些可能与您的问题有关的功能
import sys
def position(level = 0):
"""return a tuple (code, lasti, lineno) where this function is called
If level > 0, go back up to that level in the calling stack.
"""
frame = sys._getframe(level + 1)
try:
return (frame.f_code, frame.f_lasti, frame.f_lineno)
finally:
del frame
def line(level = 0):
"""return a tuple (lineno, filename, funcname) where this function is called
If level > 0, go back up to that level in the calling stack.
The filename is the name in python's co_filename member
of code objects.
"""
code, lasti, lineno = position(level=level+1)
return (lineno, code.co_filename, code.co_name)
def _globals(level = 0):
"""return the globals() where this function is called
If level > 0, go back up to that level in the calling stack.
"""
frame = sys._getframe(level + 1)
try:
return frame.f_globals
finally:
del frame