函数知道自己的名字吗?

函数知道自己的名字吗?
def myfunc():
    print myfunc.func_name

可以得到'myfunc',但是程序中是指定了'myfunc.func_name'的,有没有方法自动得到“本函数”的名字?