Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'explicitly': 0.05; 'class,': 0.07; 'desired.': 0.07; 'explicit': 0.07; 'referring': 0.07; 'expression:': 0.09; 'filter,': 0.09; 'grid': 0.09; 'immutable': 0.09; 'iterate': 0.09; 'rows': 0.09; 'def': 0.12; 'itself.': 0.14; 'charles': 0.16; 'col': 0.16; 'constructs': 0.16; 'fine.': 0.16; 'guessing': 0.16; 'happily': 0.16; 'iterable': 0.16; 'iterator': 0.16; 'iterator,': 0.16; 'message- id:@earthlink.net': 0.16; 'object).': 0.16; 'once.': 0.16; 'subclass': 0.16; 'wrote:': 0.18; 'properly': 0.19; 'things.': 0.19; 'value.': 0.19; 'feb': 0.22; '>>>': 0.22; 'header:User- Agent:1': 0.23; 'cell:': 0.24; "shouldn't": 0.24; 'source': 0.25; 'define': 0.26; 'this:': 0.26; 'header:In-Reply-To:1': 0.27; 'function': 0.29; 'chris': 0.29; 'raise': 0.29; "i'm": 0.30; 'included': 0.31; 'code': 0.31; 'formed': 0.31; 'object.': 0.31; 'once,': 0.31; 'slot': 0.31; 'trivial': 0.31; 'yes.': 0.31; 'class': 0.32; '(e.g.': 0.33; 'skip:_ 10': 0.34; "i'd": 0.34; 'received:66': 0.35; "can't": 0.35; 'classes': 0.35; 'something': 0.35; 'form.': 0.35; 'but': 0.35; 'version': 0.36; 'are,': 0.36; 'yield': 0.36; 'next': 0.36; 'method': 0.36; 'should': 0.36; 'received:209': 0.37; 'implement': 0.38; 'easiest': 0.38; 'to:addr :python-list': 0.38; 'fact': 0.38; 'pm,': 0.38; 'rather': 0.38; 'to:addr:python.org': 0.39; 'remove': 0.60; 'skip:u 10': 0.60; 'easy': 0.60; 'new': 0.61; 'range': 0.61; 'simply': 0.61; "you're": 0.61; 'you.': 0.62; 'more': 0.64; 'charset:windows-1252': 0.65; 'within': 0.65; 'determine': 0.67; 'apart': 0.72; 'cut': 0.74; '2015': 0.84; 'cycled': 0.84; 'subject:skip:S 10': 0.84 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=dk20050327; d=earthlink.net; b=BhTy53VRKR68SZh/4YGt2W9Eu77KARXMPIob6n35zfcQzz3qfAV+FGsyww5M1ezJ; h=Received:Message-ID:Date:From:User-Agent:MIME-Version:To:Subject:References:In-Reply-To:Content-Type:Content-Transfer-Encoding:X-ELNK-Trace:X-Originating-IP; Date: Mon, 09 Feb 2015 22:16:14 -0800 From: Charles Hixson User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Icedove/31.3.0 MIME-Version: 1.0 To: python-list@python.org Subject: Re: __next__ and StopIteration References: <54d94307$0$12998$c3e8da3$5496439d@news.astraweb.com> <54D98A35.9060203@earthlink.net> In-Reply-To: Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-ELNK-Trace: 8d80e6a64fbe03f9b17f27b91410de884d2b10475b571120318a924da6b73ca3be7d25927bc8e43c396bf6a0aafa7dc0350badd9bab72f9c350badd9bab72f9c X-Originating-IP: 66.245.47.138 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: 64 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1423549003 news.xs4all.nl 2850 [2001:888:2000:d::a6]:57082 X-Complaints-To: abuse@xs4all.nl Path: csiph.com!usenet.pasdenom.info!bete-des-vosges.org!feed.ac-versailles.fr!nerim.net!novso.com!newsfeed.xs4all.nl!newsfeed4.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Xref: csiph.com comp.lang.python:85429 On 02/09/2015 08:46 PM, Chris Angelico wrote: > On Tue, Feb 10, 2015 at 3:33 PM, Charles Hixson > wrote: >>> The proper version of the "hard way" is: >>> >>> 1) The __iter__ method of the iterable constructs a new iterator >>> instance and returns it. >>> >>> 2) The __iter__ method of the *iterator* simply returns itself. >>> >>> 3) The __next__ method of the iterator tracks the current value and >>> returns the next value. Note that the iterator should never store the >>> iterable's data internally, unless the iterable is immutable and the >>> calculation is trivial (e.g. a range object). Instead, it should >>> determine the next value by referring to its source iterable. >> So if I'm understanding this correctly, I should implement as an internal >> class within Grid something like: >> class GridIter(Iterator): > Apart from the fact that you shouldn't have to explicitly subclass > Iterator, yes. But this is the hard way to do things. The easy way is > to simply define an __iter__ method on your Grid which returns an > iterator - and one excellent form of iterator, for custom classes like > this, is a generator object. Your original code can slot happily in, > with one tiny change: > > class Grid: > blah blah > > def __iter__(self): > for row in range(self._rows): > for col in range(self._cols): > if self._grid[row][col]: > yield self._grid[row][col] > > The only change is to remove the explicit StopIteration at the end; > once your generator function terminates, the generator object will > raise StopIteration forever afterward, without any help from you. > (Also, post-PEP479, the explicit raise will actually cause > RuntimeError, so it's not just superfluous, but actually a problem.) > > But I'm guessing that your grid and rows are actually iterable > themselves. If they are, you can cut the code down to this: > > def __iter__(self): > for row in self._grid: > for cell in row: > if cell: yield cell > > or a generator expression: > > def __iter__(self): > return (cell for row in self._grid for cell in row if cell) > > or itertools.chain and filter, if you so desired. As long as you > return an iterator, you're fine. This is far and away the easiest way > to make a class iterable. > > ChrisA Yes, rows and cols are lists, but I'm going to need to iterate through them more than once. I'd rather do without a included class, but if a properly formed iterator can only be cycled through once, and if I understand properly that means I can't use the "class instance is it's own iterator" form.