如何在python中获取指向当前函数的指针?

时间:2012-08-29 04:42:33

标签: python function

  

可能重复:
  Python code to get current function into a variable?

有没有方便的方法来获取当前函数的指针?

例如:

current_func_ref = None
def func():
    current_func_ref = ___ #something need to fill
    do something..

1 个答案:

答案 0 :(得分:0)

好的,这有点厚颜无耻,不像你想要的那样非常通用,但无论如何它都在这里:

current_func_ref = None
def func():
    global current_func_ref
    current_func_ref = func