Path: csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail From: Peter Otten <__peter__@web.de> Newsgroups: comp.lang.python Subject: Re: reversed(zip(...)) not working as intended Date: Sun, 06 Mar 2016 19:59:43 +0100 Organization: None Lines: 46 Message-ID: References: <56DC7727.1090001@mail.de> <20160306123850.6f78ab7c@bigbox.christie.dr> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Trace: news.uni-berlin.de hLH/RnWq9jqVyKadhE+7kQjY7Q4q1tthBrlT92hK34dQ== 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; 'python3': 0.05; 'raises': 0.07; '(0,': 0.09; '(1,': 0.09; 'collections': 0.09; 'falls': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'typeerror:': 0.09; 'python': 0.10; 'subject:not': 0.11; 'argument': 0.15; '(2,': 0.16; '(3,': 0.16; '(8,': 0.16; 'received:80.91.229.3': 0.16; 'received:dip0.t-ipconnect.de': 0.16; 'received:io': 0.16; 'received:plane.gmane.org': 0.16; 'received:psf.io': 0.16; 'received:t-ipconnect.de': 0.16; 'reversed': 0.16; 'sequence.': 0.16; 'wrote:': 0.16; '>>>': 0.20; '"",': 0.22; '2.x': 0.22; 'import': 0.24; '(most': 0.24; 'tim': 0.24; 'header:User-Agent:1': 0.26; "doesn't": 0.26; 'header:X-Complaints-To:1': 0.26; 'linux': 0.26; 'sequence': 0.27; 'chase': 0.29; "i'm": 0.30; 'related': 0.32; 'returned': 0.32; 'traceback': 0.33; 'file': 0.34; 'handle': 0.34; 'false': 0.35; "isn't": 0.35; 'but': 0.36; 'to:addr:python- list': 0.36; 'subject:: ': 0.37; 'received:org': 0.37; 'why': 0.39; 'sure': 0.39; 'to:addr:python.org': 0.40; 'received:de': 0.40; 'strange': 0.63; 'more': 0.63; 'mar': 0.65; '2014,': 0.91 X-Injected-Via-Gmane: http://gmane.org/ X-Gmane-NNTP-Posting-Host: p57bd8a9d.dip0.t-ipconnect.de User-Agent: KNode/4.13.3 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Xref: csiph.com comp.lang.python:104167 Tim Chase wrote: > On 2016-03-06 19:29, Sven R. Kunze wrote: >> what's the reason that reversed(zip(...)) raises as a TypeError? >> >> Would allowing reversed to handle zip and related functions lead to >> strange errors? > > Peculiar, as this works in 2.x but falls over in 3.x: > > $ python > Python 2.7.9 (default, Mar 1 2015, 12:57:24) > [GCC 4.9.2] on linux2 > Type "help", "copyright", "credits" or "license" for more information. >>>> list(reversed(zip(range(10), range(20,100)))) > [(9, 29), (8, 28), (7, 27), (6, 26), (5, 25), (4, 24), (3, 23), (2, > 22), (1, 21), (0, 20)] > > $ python3 > Python 3.4.2 (default, Oct 8 2014, 10:45:20) > [GCC 4.9.1] on linux > Type "help", "copyright", "credits" or "license" for more information. >>>> list(reversed(zip(range(10), range(20,100)))) > Traceback (most recent call last): > File "", line 1, in > TypeError: argument to reversed() must be a sequence > > > I'm not sure why reversed() doesn't think that the thing returned by > zip() isn't a sequence. Because it isn't ;) [Python 3] >>> zip("abc") >>> import collections >>> isinstance(z, collections.Sequence) False >>> isinstance(z, collections.Iterator) True zip() in Python 3 is what itertools.izip() used to be in Python 2.