Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed4.news.xs4all.nl!xs4all!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.003 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'example:': 0.03; 'failing': 0.07; 'method.': 0.07; 'happens.': 0.09; 'item.': 0.09; 'iterate': 0.09; 'wrapper': 0.09; 'def': 0.12; 'factory': 0.16; 'from:addr:cs': 0.16; 'from:addr:zip.com.au': 0.16; 'from:name:cameron simpson': 0.16; 'item):': 0.16; 'iterable,': 0.16; 'message-id:@cskk.homeip.net': 0.16; 'received:211.29': 0.16; 'received:211.29.132': 0.16; 'received:cskk.homeip.net': 0.16; 'received:homeip.net': 0.16; 'received:optusnet.com.au': 0.16; 'received:syd.optusnet.com.au': 0.16; 'sentinel': 0.16; 'simpson': 0.16; 'sorting': 0.16; 'subject: \n ': 0.16; 'prevent': 0.16; 'weird': 0.16; 'wrote:': 0.18; 'wed,': 0.18; "python's": 0.19; 'later': 0.20; 'import': 0.22; 'header:User-Agent:1': 0.23; 'cheers,': 0.24; 'header:In-Reply-To:1': 0.27; 'idea': 0.28; 'points': 0.29; 'raise': 0.29; "doesn't": 0.30; 'dec': 0.30; "i'm": 0.30; 'work.': 0.31; 'code': 0.31; 'skip:q 20': 0.31; 'though.': 0.31; 'class': 0.32; 'probably': 0.32; 'stuff': 0.32; 'thanks!': 0.32; 'cases': 0.33; 'skip:_ 10': 0.34; 'basic': 0.35; 'but': 0.35; 'really': 0.36; 'edge': 0.36; 'library.': 0.36; 'received:com.au': 0.36; 'charset:us-ascii': 0.36; 'being': 0.38; 'mapping': 0.38; 'received:211': 0.38; 'skip:[ 10': 0.38; 'to:addr :python-list': 0.38; 'issue': 0.38; 'does': 0.39; 'sure': 0.39; 'to:addr:python.org': 0.39; 'called': 0.40; 'users': 0.40; 'ensure': 0.60; 'easy': 0.60; 'subject: ': 0.61; 'deliver': 0.61; 'simple': 0.61; 'content-disposition:inline': 0.62; 'personal': 0.63; 'subject:more': 0.64; 'more': 0.64; 'great': 0.65; 'situation': 0.65; 'close': 0.67; 'nobody': 0.68; 'subject:there': 0.68; 'expose': 0.84; 'guardian': 0.84; '2013': 0.98 Date: Thu, 5 Dec 2013 13:29:58 +1100 From: Cameron Simpson To: python-list@python.org Subject: Re: extracting a heapq in a for loop - there must be more elegant solution MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) References: X-Optus-CM-Score: 0 X-Optus-CM-Analysis: v=2.1 cv=YYGEuWhf c=1 sm=1 tr=0 a=YuQlxtEQCowy2cfE5kc7TA==:117 a=YuQlxtEQCowy2cfE5kc7TA==:17 a=ZtCCktOnAAAA:8 a=PO7r1zJSAAAA:8 a=LcaDllckn3IA:10 a=jRJTwREybbQA:10 a=kj9zAlcOel0A:10 a=vrnE16BAAAAA:8 a=8AHkEIZyAAAA:8 a=sJoo9Cljmp4A:10 a=UZl9ao3KkTKl7CDee9EA:9 a=CjuIK1q_8ugA:10 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: 72 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1386210611 news.xs4all.nl 2924 [2001:888:2000:d::a6]:40477 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:61071 On 04Dec2013 09:44, Helmut Jarausch wrote: > On Wed, 04 Dec 2013 08:13:03 +1100, Cameron Simpson wrote: > > I iterate over Queues so often that I have a personal class called > > a QueueIterator which is a wrapper for a Queue or PriorityQueue > > which is iterable, and an IterablePriorityQueue factory function. > > Example: > > > > from cs.queues import IterablePriorityQueue > > > > IPQ = IterablePriorityQueue() > > for item in [1,2,3,7,6,5,9,4]: > > IPQ.put(item) > > > > for item in IPQ: > > ... do stuff with item ... > > Many thanks! > I think you QueueIterator would be a nice addition to Python's library. I'm not convinced. I'm still sorting out the edge cases, and it's my own code and use cases! The basic idea is simple enough: class QueueIterator: def __init__(self, Q, sentinel=None): self.q = Q self.sentinel = sentinel def __next__(self): item = self.q.get() if item is self.sentinel: # queue sentinel again for other users self.q.put(item) raise StopIteration return item def put(self, item): if item is self.sentinel: raise ValueError('.put of sentinel object') return self.q.put(item) def close(self): self.q.put(self.sentinel) QI = QueueIterator(Queue()) Note that it does not work well for PriorityQueues unless you can ensure the sentinel sorted later than any other item. But you really need to be sure nobody does a .get() in the internal queue, or the close protocol doesn't work. This is why the above does not expose a .get() method. You want to prevent .put() on the queue after close(). Of course, I have use cases where I _want_ to allow .put() after close:-( You may want to issue a warning if more than one call to .close happens. And so on. And I have a some weird cases where the close situation has trouble, which probably points to .close() not being a great mapping to my termination scenarios. It is easy to code for the simple data-in, data-out case though. Cheers, -- Cameron Simpson Computer manufacturers have been failing to deliver working systems on time and to budget since Babbage. - Jack Schofield, in The Guardian