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?
SyntaxError: import * only allowed at module level. I've added the python-2.x tag to clarify. – Wilfred Hughes Nov 19 '12 at 15:36nested2.py:1: SyntaxWarning: import * only allowed at module level \n def outer_func(): \n1353343092.54– Wilfred Hughes Nov 19 '12 at 16:38