locals().update(...)

E

eisoab

I expected this to work:


def f(**args):
locals().update(args)
print locals()
print a

d=dict(a=1)

f(**d)

but:
global name 'a' is not defined


Where is my mistake?

This does work:

globals().update({'a':1})

print a

1

-E
 
D

Dave Angel

I expected this to work:


def f(**args):
locals().update(args)
print locals()
print a

d=dict(a=1)

f(**d)

but:
Where is my mistake?

Chris has given you the place where it's documented that it generally
won't work. I'll try to explain why, at least for local variables
inside functions, and for CPython implementation.

The generated byte code for a function does *not* look up each symbol by
name during execution. The compiler builds a list of known local
symbol names, and gives them each an index (a small positive integer).
At run time that list is fixed in size and meaning; no new locals can
be added. The locals() function just creates a dictionary that
approximates what the semantics of the symbols are. But changes to that
dictionary have no effect on the running function.

That's one reason that copying a global value to a local symbol inside a
function can make that function run faster. Globals always require a
dictionary lookup, while function locals are just an integer offset away.

This does work:

globals().update({'a':1})

print a

1

-E

As i said above, the rules are different for globals, and they are even
if you use locals() to access them. However, i'd consider it prudent
never to assume you can write to the dictionary constructed by either
the locals() or the globals() functions.
 
S

Steven D'Aprano

As i said above, the rules are different for globals, and they are even
if you use locals() to access them. However, i'd consider it prudent
never to assume you can write to the dictionary constructed by either
the locals() or the globals() functions.

globals() is implicitly documented as being writable: "This is always the
dictionary of the current module..." -- unless you have a module with a
read-only dict, that is writable.

http://docs.python.org/release/3.2/library/functions.html#globals

There are tricks to getting read-only namespaces, but you can
legitimately expect to write to globals().
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top