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 を使用して、入れ子関数のコード オブジェクトを取得できます。しかし、ネストされた関数の関数オブジェクトを取得する方法が見つかりませんでした。
どんな助けでも大歓迎です。