Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed1.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.121 X-Spam-Level: * X-Spam-Evidence: '*H*': 0.77; '*S*': 0.01; 'collections': 0.16; 'sequence.': 0.16; 'wrote:': 0.18; '>>>': 0.22; 'import': 0.22; 'mon,': 0.24; '15,': 0.26; 'header:In-Reply-To:1': 0.27; 'am,': 0.29; 'message-id:@mail.gmail.com': 0.30; 'sep': 0.31; "i'd": 0.34; 'received:google.com': 0.35; 'sequence': 0.36; 'to:addr :python-list': 0.38; 'to:addr:python.org': 0.39; 'even': 0.60; 'otten': 0.84; 'subject:Lists': 0.91 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type; bh=MLdBC/RZ5wJOScxc6OoJFxwf1KHCoHjSaYyNlLirFEo=; b=RAgMnNyOH6TeqXPmy/TSFEuL8H85yF9FiSEsn65mnN7m9oAFd8GCBZ83747ChyzBqK iomjwILyhsJAMzavQH3CpzC3VqoSlrLirNoJD1Kx6J8xfcNZGTVAXyS7HgGjUkbg6/ed 1SIEDPAzVT/cTLX6YKGlwjXK7h7TXZtAtpYjZpQWg7spFrAQTHQXS7iJjFsaxwfu8gbS bbPmOwTC9SsoN4/2WQrUAtEEj4lalezmVr9SgTa1nmWVxaqZHRnMca1orh0bw8846GV0 tadeyYbuIbw/nJXj84snhfvDTY0gywIpAWmHG1q5lTmCXrU2+iCNxUe57K8Y35xtJZqy Y+8g== X-Received: by 10.66.161.41 with SMTP id xp9mr14175040pab.120.1410796465158; Mon, 15 Sep 2014 08:54:25 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: References: <12kc1a5j82lak7tmnatvhk84fh2ne08s24@4ax.com> From: Ian Kelly Date: Mon, 15 Sep 2014 09:53:45 -0600 Subject: Re: Lists To: Python Content-Type: text/plain; charset=UTF-8 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: 8 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1410796468 news.xs4all.nl 2970 [2001:888:2000:d::a6]:45350 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:77894 On Mon, Sep 15, 2014 at 1:36 AM, Peter Otten <__peter__@web.de> wrote: > I'd call range() an iterable. I'd even go so far as to call it a sequence. >>> from collections import Sequence >>> issubclass(range, Sequence) True