Jeff Clites <[EMAIL PROTECTED]> wrote: > What pasm is supposed to correspond to this snippet of Python code > (assume this is inside a function, so these can be considered to be > local variables):
> a = 7 > b = 12 > c = a + b Run it through pie-thon. It should produce some reasonable code. For leaf-functions (w/o introspection i.e. calls to locals()), the lexical handling would get dropped. And a better translator would use lexical opcodes by index and not by name. > JEff leo