Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This works as expected

def outer_func():
    from time import *

    print time()

outer_func()

I can define nested functions in the context fine and call them from other nested functions:

def outer_func():
    def time():
        return '123456'

    def inner_func():
        print time()

    inner_func()

outer_func()

I can even import individual functions:

def outer_func():
    from time import time

    def inner_func():
        print time()

    inner_func()

outer_func()

This, however, throws SyntaxError: import * is not allowed in function 'outer_func' because it contains a nested function with free variables:

def outer_func():
    from time import *

    def inner_func():
        print time()

    inner_func()

outer_func()

I'm aware this isn't best practice, but why doesn't it work?

share|improve this question
1  
interesting question ... – mgilson Nov 19 '12 at 15:13
"This works as expected" - in which python version? – thg435 Nov 19 '12 at 15:31
@thg435 Python 2. Python 3 is stricter and refuses the first example with SyntaxError: import * only allowed at module level. I've added the python-2.x tag to clarify. – Wilfred Hughes Nov 19 '12 at 15:36
@WilfredHughes: python 2.6 and 2.7 refuse to run that either. – thg435 Nov 19 '12 at 15:47
@thg435 works for me with Python 2.7, though with a warning. nested2.py:1: SyntaxWarning: import * only allowed at module level \n def outer_func(): \n1353343092.54 – Wilfred Hughes Nov 19 '12 at 16:38
show 1 more comment

1 Answer

up vote 11 down vote accepted

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 method 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.

share|improve this answer
1  
brilliant answer. (+1 from me!) – mgilson Nov 19 '12 at 15:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.