Path: csiph.com!usenet.pasdenom.info!news.albasani.net!newsfeed.freenet.ag!news2.euro.net!newsgate.cistron.nl!newsgate.news.xs4all.nl!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.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'explicitly': 0.04; 'method.': 0.05; 'postfix': 0.07; 'raises': 0.07; 'remaining': 0.07; 'works.': 0.07; 'python': 0.09; '[1,': 0.09; 'behavior,': 0.09; 'length.': 0.09; "object's": 0.09; 'pep': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'terry': 0.09; 'typeerror:': 0.09; 'underlying': 0.09; 'url:peps': 0.09; 'def': 0.10; 'cases': 0.15; 'decrements': 0.16; 'hint': 0.16; 'iterable': 0.16; 'iterator': 0.16; 'iterator,': 0.16; 'iterators': 0.16; 'length,': 0.16; 'non-c': 0.16; 'operation.': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'reedy': 0.16; 'retrieving': 0.16; 'subject:optimization': 0.16; 'why,': 0.16; 'wrote:': 0.17; 'integer': 0.17; 'pointer': 0.17; 'skip': 0.17; 'tries': 0.17; 'url:dev': 0.17; 'jan': 0.18; '>>>': 0.18; '"",': 0.22; 'tuples': 0.22; 'skip:_ 20': 0.22; 'sets': 0.23; 'raise': 0.24; 'pass': 0.25; 'header:In-Reply-To:1': 0.25; 'header:User-Agent:1': 0.26; '(most': 0.27; 'header:X-Complaints- To:1': 0.28; 'subject:list': 0.28; '>>>>': 0.29; 'along.': 0.29; 'falls': 0.29; 'hash': 0.29; 'implicitly': 0.29; 'initialized': 0.29; 'methods.': 0.29; 'case,': 0.29; 'skip:_ 10': 0.29; 'class': 0.29; "skip:' 10": 0.30; 'checked': 0.30; 'url:python': 0.32; 'file': 0.32; 'generally': 0.32; 'could': 0.32; 'print': 0.32; 'mixed': 0.33; 'traceback': 0.33; 'to:addr:python-list': 0.33; 'list': 0.35; 'skip:l 30': 0.35; 'pm,': 0.35; 'table': 0.35; 'too.': 0.35; 'something': 0.35; 'next': 0.35; 'add': 0.36; 'received:org': 0.36; 'but': 0.36; 'url:org': 0.36; 'depends': 0.36; 'method': 0.36; 'should': 0.36; 'does': 0.37; '(for': 0.37; 'item': 0.37; 'rather': 0.37; 'subject:: ': 0.38; 'object': 0.38; 'skip:l 20': 0.38; 'some': 0.38; 'instead': 0.39; 'to:addr:python.org': 0.39; 'step': 0.39; 'called': 0.39; 'subject:-': 0.40; 'header:Received:5': 0.40; 'range': 0.60; 'first': 0.61; 'back': 0.62; 'provide': 0.62; 'skip:n 10': 0.63; 'received:fios.verizon.net': 0.84; 'slots.': 0.84 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Terry Reedy Subject: Re: Interesting list() un-optimization Date: Thu, 07 Mar 2013 17:53:27 -0500 References: <20130306215735.649932ee@bigbox.christie.dr> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: pool-173-75-251-66.phlapa.fios.verizon.net User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130215 Thunderbird/17.0.3 In-Reply-To: X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 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: 79 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1362696834 news.xs4all.nl 6892 [2001:888:2000:d::a6]:34027 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:40832 On 3/7/2013 3:41 PM, Wolfgang Maier wrote: > >>>>> Iterators do not generally have __len__ methods. >>>>> >>>>>>>> len(iter(range(10))) >>>>> Traceback (most recent call last): >>>>> File "", line 1, in >>>>> TypeError: object of type 'range_iterator' has no len() >>>> >>>> But iterators have a length hint method that are used for some >>>> optimizations and preallocations, too. >>>> >>>>>>> i = iter(range(10)) >>>>>>> i.__length_hint__() >>>> 10 >>>> >>>> See http://www.python.org/dev/peps/pep-0424/ >>> > > very interesting (hadn't heard of it)! Just checked the PEP, > then tested list()'s behavior, and it is just as described: > > class stupid(list): > def __len__(self): > print ('len() called') > return NotImplemented > > def __length_hint__(self): > print ('hint requested') > l=iter(self).__length_hint__() > print (l) > return l > > a=stupid((1,2,3)) > len(d) > ======> > len() called > > Traceback (most recent call last): > File "", line 1, in > len(d) > TypeError: an integer is required > > list(d) > ======> > len() called > hint requested > 3 > [1, 2, 3] > > so list() first tries to call the iterable's __len__ method. If that raises a > TypeError it falls back to __length_hint__ . > What I still don't know is how the listiterator object's __length_hint__ works. > Why, in this case, does it know that it has a length of 3 ? The PEP does not > provide any hint how a reasonable hint could be calculated. 'How' depends on the iterator, but when it has an underlying concrete iterable of known length, it should be rather trivial as .__next__ will explicitly or implicitly use the count remaining in its operation. Part of the justification of adding __length_hint__ is that in many cases it is so easy. Iterators based on an iterator with a length_hint can just pass it along. The list iterator might work with a C pointer to the next item and a countdown count initialized to the list length. The __next__ method might be something like this mixed C and Python pseudocode: if (countdown--) return *(current--); else raise StopIteration (For non-C coders, postfix -- decrements value *after* retrieving it.) Then __length_hint__ would just return countdown. Tuples would work the same way. Sets and dicts would need current-- elaborated to skip over empty hash table slots. Range iterators would add the step to current, instead of 1. -- Terry Jan Reedy