MSG = 'Outside'
def foo():
def bar():
nonlocal MSG
global MSG
MSG = 'Inside'
bar()
print(MSG)
MSG = 'Outside'
def foo():
global MSG
MSG = 'Inside'
msg = 'Outside'
def bar():
nonlocal msg
msg = 'Inside'
bar()
print(MSG)
print(msg)
Emitted when a name is both nonlocal
and global
.