Observations on the three pillars of Python execution

Terry Reedy tjreedy at udel.edu
Fri Aug 5 16:55:54 EDT 2011


On 8/5/2011 4:22 AM, Thomas Jollans wrote:
> On 05/08/11 09:20, Eric Snow wrote:
>> Object available during code object execution:
>> (M) no
>> (C) no
>> (F) no
> (F) yes.
>
> cf. recursion.

Recursion only happens through runtime name resolution, not through 
direct access to the function or code object from within the code.

-- 
Terry Jan Reedy




More information about the Python-list mailing list