I don't know if there is an attribute of a function that gives the __dict__ of the outer space of the function when this outer space isn't the global space == the module, which is the case when the function is a nested function, in Python 3.
But in Python 2, as far as I know, there isn't such an attribute.
So the only possibilities to do what you want is:
1) using a mutable object, as said by others
2)
def A() :
def B() :
b = 1
print 'b before C() ==',b
def C() :
# I can access 'b' from here.
b = 10
print'b ==',b
return b
b = C()
print'b after C() ==', b
B()
A()
result
b before C() == 1
b == 10
b after C() == 10
.
Nota
The solution of Cédric Julien has a drawback:
def A() :
def B() :
global b # N1
b = 1
print ' b in function B before executing C() :',b
def C() :
# I can access 'b' from here.
global b # N2
print ' b in function C before assigning b = 2 :',b
b = 2
print ' b in function C after assigning b = 2 :',b
# But can i modify 'b' here? 'global' and assignment will not work.
C()
print ' b in function B , after execution of C()',b
B()
b = 450
print 'global b , before execution of A() :', b
A()
print 'global b , after execution of A() :', b
result
global b , before execution of A() : 450
b in function B before executing C() : 1
b in function C before assigning b = 2 : 1
b in function C after assigning b = 2 : 2
b in function B , after execution of C() 2
global b , after execution of A() : 2
The global b after execution of A() has been modified and it may be not whished so
That's the case only if there is an object with identifier b in the global namespace
bis mutable. An assignment tobwill mask the outer scope. – JimB Dec 9 '11 at 15:54nonlocalhasn't been backported to 2.x. It's an intrinsic part of closure support. – Glenn Maynard Dec 9 '11 at 18:28