[Python-Dev] Where are locals initialized?

Jeremy Hylton jeremy@zope.com
Mon, 27 Aug 2001 10:27:17 -0400 (EDT)


It's in PyEval_EvalCodeEx().  Look for the SETLOCAL() macro.  The code
in lines 2305 to 2494 is all dealing with function arguments.

Jeremy