Why can't I use `import *` in a function?

雨燕双飞 提交于 2019-12-03 23:21:54

The compiler has no way of knowing whether the time module exports objects named time.

The free variables of nested functions are tied to closure cells at compile time. Closure cells themselves point to (local) variables defined in compiled code, as opposed to globals, which are not tied at all. See the python data model; functions refer to their globals via the func_globals attribute, and the func_closure attribute holds a sequence of closure cells (or None).

As such, you cannot use a dynamic import statement in a nested scope.

And why do nested functions need closure cells at all? Because you need a mechanism to refer to local function variables when the function itself has finished:

def foo(spam):
    def bar():
        return spam
    return bar

afunc = foo('eggs')

By calling foo() I obtained a nested function that refers to a scoped variable, and the compiler needs to create the necessary references for the interpreter to be able to retrieve that scoped variable again. Hence the cells, and the limitations placed on them.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!