python 根据函数名调用函数,Python如何获得调用函数(不只是它的名字)?

I want to write a function which returns the calling function:

def foo():

return get_calling_function() #should return 'foo' function object

There's numerous examples online how to get the calling function's name, but not how to get the actual object. I've come up with the following solution which gets the name, then looks it up in the calling function's global namespace. However this doesn't work for class functions since there you need the class name as well, and I image there's a bunch of other edge cases as well.

from inspect import stack

def get_calling_function():

return stack()[2][0].f_globals[stack()[1][3]]

So any advice how or if its possible to write this function so that it works generically (on Python 3, btw)? Thanks.

解决方案

Calling can happen from any code object (and from an extension module/builtin): from exec, execfile, from module name space (during import), from within a class definition, from within a method / classmethod / staticmethod, from a decorated function/method, from within a nested function, ... - so there is no "calling function" in general, and the difficulty to do anything good with that.

The stack frames and their code objects are the most general you can get - and examine the attributes.

This one finds the calling function in many cases:

import sys, inspect

def get_calling_function():

"""finds the calling function in many decent cases."""

fr = sys._getframe(1) # inspect.stack()[1][0]

co = fr.f_code

for get in (

lambda:fr.f_globals[co.co_name],

lambda:getattr(fr.f_locals['self'], co.co_name),

lambda:getattr(fr.f_locals['cls'], co.co_name),

lambda:fr.f_back.f_locals[co.co_name], # nested

lambda:fr.f_back.f_locals['func'], # decorators

lambda:fr.f_back.f_locals['meth'],

lambda:fr.f_back.f_locals['f'],

):

try:

func = get()

except (KeyError, AttributeError):

pass

else:

if func.__code__ == co:

return func

raise AttributeError("func not found")

# Usage

def f():

def nested_func():

print get_calling_function()

print get_calling_function()

nested_func()

class Y:

def meth(self, a, b=10, c=11):

print get_calling_function()

class Z:

def methz(self):

print get_calling_function()

z = Z()

z.methz()

return z

@classmethod

def clsmeth(cls):

print get_calling_function()

@staticmethod

def staticmeth():

print get_calling_function()

f()

y = Y()

z = y.meth(7)

z.methz()

y.clsmeth()

##y.staticmeth() # would fail

It finds:

>

>

>

>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值