Path: csiph.com!newsfeed.hal-mli.net!feeder3.hal-mli.net!newsfeed.hal-mli.net!feeder1.hal-mli.net!newsfeed.xs4all.nl!newsfeed6.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.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'python': 0.09; 'any.': 0.09; 'bool': 0.09; 'longs': 0.09; 'sep': 0.09; 'subject:set': 0.09; 'to:addr:comp.lang.python': 0.09; 'cc:addr:python-list': 0.10; "wouldn't": 0.11; 'index': 0.13; 'cases': 0.15; 'modification': 0.15; 'iterator': 0.16; 'iterator.': 0.16; 'iterators,': 0.16; 'justified': 0.16; 'overflow.': 0.16; 'set,': 0.16; 'wrote:': 0.17; 'version.': 0.17; 'cc:2**0': 0.23; 'monday,': 0.23; 'idea': 0.24; 'testing': 0.24; 'cc:addr:python.org': 0.25; 'header:In-Reply-To:1': 0.25; 'header :User-Agent:1': 0.26; 'am,': 0.27; 'prevent': 0.27; 'long.': 0.29; 'overhead': 0.29; 'reset': 0.29; 'structure': 0.32; 'could': 0.32; 'int': 0.33; 'another': 0.33; 'version': 0.34; 'received:google.com': 0.34; 'faster': 0.35; 'open': 0.35; 'doing': 0.35; 'received:209.85': 0.35; 'there': 0.35; 'next': 0.35; 'created': 0.36; 'keeps': 0.37; 'two': 0.37; 'received:209': 0.37; 'data': 0.37; 'subject:: ': 0.38; 'object': 0.38; 'think': 0.40; 'most': 0.61; 'exceed': 0.65; 'counts': 0.81; 'flag.': 0.84; 'technique': 0.93 Newsgroups: comp.lang.python Date: Mon, 3 Sep 2012 13:04:23 -0700 (PDT) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=67.184.78.189; posting-account=MQ3pigoAAACeFzUFjVAePnOjOJMNlvq9 References: <7xy5le7cli.fsf@ruckus.brouhaha.com> <502dab6c$0$29978$c3e8da3$5496439d@news.astraweb.com> <1567e8c7-a2bb-41f4-9be8-18e9f4d063cb@googlegroups.com> User-Agent: G2/1.0 X-Google-Web-Client: true X-Google-IP: 67.184.78.189 MIME-Version: 1.0 Subject: Re: set and dict iteration From: Aaron Brady To: comp.lang.python@googlegroups.com Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: Python 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: , Message-ID: Lines: 26 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1346702665 news.xs4all.nl 6941 [2001:888:2000:d::a6]:45329 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:28369 On Monday, September 3, 2012 2:30:24 PM UTC-5, Ian wrote: > On Sun, Sep 2, 2012 at 11:43 AM, Aaron Brady wrote= : >=20 > > We could use a Python long object for the version index to prevent over= flow. Combined with P. Rubin's idea to count the number of open iterators,= most use cases still wouldn't exceed a single word comparison; we could re= set the counter when there weren't any. >=20 >=20 >=20 > We could use a Python long; I just don't think the extra overhead is >=20 > justified in a data structure that is already highly optimized for >=20 > speed. Incrementing and testing a C int is *much* faster than doing >=20 > the same with a Python long. I think the technique would require two python longs and a bool in the set,= and a python long in the iterator. One long counts the number of existing (open) iterators. Another counts th= e version. The bool keeps track of whether an iterator has been created si= nce the last modification, in which case the next modification requires inc= rementing the version and resetting the flag.