Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!selfless.tophat.at!newsfeed.xs4all.nl!newsfeed5.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.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'else:': 0.03; 'elif': 0.04; ':-)': 0.06; '"""': 0.07; 'defines': 0.07; 'received:verizon.net': 0.07; '%s"': 0.09; '[],': 0.09; 'bind': 0.09; 'callable': 0.09; '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; 'syntax.': 0.09; 'tuple': 0.09; 'syntax': 0.11; 'wrote:': 0.15; '"new': 0.16; '(turning': 0.16; '>>is': 0.16; 'halfway': 0.16; 'iterator': 0.16; 'iterator,': 0.16; 'iterator.': 0.16; 'keys.': 0.16; 'numpy': 0.16; 'operates.': 0.16; 'pythonic': 0.16; 'received:east.verizon.net': 0.16; 'sequence,': 0.16; 'translates': 0.16; 'argument': 0.16; 'def': 0.16; 'written': 0.17; 'switched': 0.19; 'appropriate': 0.20; 'seems': 0.20; 'pair': 0.23; 'produces': 0.23; 'slice': 0.23; 'index': 0.25; 'skip:[ 10': 0.26; 'string': 0.26; 'function': 0.26; 'raise': 0.28; 'yield': 0.29; 'classes': 0.30; 'buffer,': 0.30; 'syntax,': 0.30; 'subject:?': 0.31; 'seem': 0.31; 'usual': 0.32; 'chris': 0.32; 'shows': 0.32; "skip:' 10": 0.32; 'handling': 0.33; 'does': 0.33; 'header:User-Agent:1': 0.34; 'header:X-Complaints-To:1': 0.34; 'there': 0.34; 'to:addr:python- list': 0.34; '...': 0.34; 'define': 0.35; 'lists,': 0.35; 'sequence': 0.37; 'but': 0.37; 'received:org': 0.38; 'subject:: ': 0.38; 'header:Mime-Version:1': 0.39; 'list,': 0.39; 'to:addr:python.org': 0.39; 'would': 0.40; 'here': 0.66; 'roughly': 0.67; 'container': 0.73; 'article': 0.76; '"index"': 0.84; 'exercise.': 0.84 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Neal Becker Subject: Re: writable iterators? Followup-To: gmane.comp.python.general Date: Thu, 23 Jun 2011 21:10:25 -0400 References: Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Gmane-NNTP-Posting-Host: pool-70-109-84-16.hag.east.verizon.net User-Agent: KNode/4.4.11 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: 59 NNTP-Posting-Host: 82.94.164.166 X-Trace: 1308877841 news.xs4all.nl 14140 [::ffff:82.94.164.166]:35558 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:8339 Chris Torek wrote: > In article I wrote, in part: >>Another possible syntax: >> >> for item in container with key: >> >>which translates roughly to "bind both key and item to the value >>for lists, but bind key to the key and value for the value for >>dictionary-ish items". Then ... the OP would write, e.g.: >> >> for elem in sequence with index: >> ... >> sequence[index] = newvalue >> >>which of course calls the usual container.__setitem__. In this >>case the "new protocol" is to have iterators define a function >>that returns not just the next value in the sequence, but also >>an appropriate "key" argument to __setitem__. For lists, this >>is just the index; for dictionaries, it is the key; for other >>containers, it is whatever they use for their keys. > > I note I seem to have switched halfway through thinking about > this from "value" to "index" for lists, and not written that. :-) > > Here's a sample of a simple generator that does the trick for > list, buffer, and dict: > > def indexed_seq(seq): > """ > produce a pair > > such that seq[key_or_index] is initially; you can > write on seq[key_or_index] to set a new value while this > operates. Note that we don't allow tuple and string here > since they are not writeable. > """ > if isinstance(seq, (list, buffer)): > for i, v in enumerate(seq): > yield i, v > elif isinstance(seq, dict): > for k in seq: > yield k, seq[k] > else: > raise TypeError("don't know how to index %s" % type(seq)) > > which shows that there is no need for a new syntax. (Turning the > above into an iterator, and handling container classes that have > an __iter__ callable that produces an iterator that defines an > appropriate index-and-value-getter, is left as an exercise. :-) ) Here is what numpy nditer does: for item in np.nditer(u, [], ['readwrite'], order='C'): ... item[...] = 10 Notice that the slice syntax is used to 'dereference' the iterator. This seems like reasonably pythonic syntax, to my eye.