"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