This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author rhettinger
Recipients Devin Jeanpierre, josh.r, rhettinger, serhiy.storchaka
Date 2015-01-09.15:58:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1420819092.54.0.22214818917.issue23086@psf.upfronthosting.co.za>
In-reply-to
Content
> The iteration usually has linear complexity

The iteration abstract method depends on indexing as well:

    def __iter__(self):
        i = 0
        try:
            while True:
                v = self[i]
                yield v
                i += 1
        except IndexError:
            return
History
Date User Action Args
2015-01-09 15:58:12rhettingersetrecipients: + rhettinger, Devin Jeanpierre, serhiy.storchaka, josh.r
2015-01-09 15:58:12rhettingersetmessageid: <1420819092.54.0.22214818917.issue23086@psf.upfronthosting.co.za>
2015-01-09 15:58:12rhettingerlinkissue23086 messages
2015-01-09 15:58:12rhettingercreate