[Python-Dev] PEP 292, Simpler String Substitutions

Neal Norwitz neal@metaslash.com
Wed, 19 Jun 2002 08:32:47 -0400


"Barry A. Warsaw" wrote:
> 
> BTW, you can't use locals() or globals() because you really want
> globals()-overridden-with-locals(), i.e.
> 
>     d = globals().copy()
>     d.update(locals())

What about free/cell vars?  Will these be used?  
If not, is that a problem?

Neal