def foo():
print "I am foo"
def bar1():
print "I am bar1"
def bar2():
print "I am bar2"
def barN():
print "I am barN"
funobjs_in_foo = get_nest_functions(foo)
def get_nest_functions(funobj):
#how to write this function??
如何获取所有嵌套的函数对象?我可以通过 funobj.func_code.co_consts 获取嵌套函数的代码对象。但是我还没有找到一种方法来获取嵌套函数的函数对象。
任何帮助表示赞赏。