Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!aioe.org!feeder.news-service.com!xlned.com!feeder5.xlned.com!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.002 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'subject:Python': 0.06; 'received:verizon.net': 0.07; 'terry': 0.07; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:80.91.229.12': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'received:lo.gmane.org': 0.09; 'runtime': 0.09; 'am,': 0.12; 'reedy': 0.16; 'wrote:': 0.16; 'jan': 0.19; 'header:In-Reply- To:1': 0.22; 'code': 0.25; 'code.': 0.26; 'function': 0.27; '(f)': 0.30; 'recursion': 0.30; 'yes.': 0.30; 'to:addr:python-list': 0.33; 'header:User-Agent:1': 0.34; 'eric': 0.34; 'header:X -Complaints-To:1': 0.35; 'object': 0.35; 'received:org': 0.38; 'subject:: ': 0.39; 'header:Mime-Version:1': 0.39; 'to:addr:python.org': 0.39; 'happens': 0.40; 'direct': 0.66; 'recursion.': 0.84; 'resolution,': 0.84; 'snow': 0.91 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Terry Reedy Subject: Re: Observations on the three pillars of Python execution Date: Fri, 05 Aug 2011 16:55:54 -0400 References: <4E3BA852.9020604@jollybox.de> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: pool-74-109-121-73.phlapa.fios.verizon.net User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:5.0) Gecko/20110624 Thunderbird/5.0 In-Reply-To: <4E3BA852.9020604@jollybox.de> X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 16 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1312577769 news.xs4all.nl 23896 [2001:888:2000:d::a6]:49840 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:10933 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