Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!lightspeed.eweka.nl!lightspeed.eweka.nl!newsfeed.xs4all.nl!newsfeed3.news.xs4all.nl!xs4all!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.010 X-Spam-Evidence: '*H*': 0.98; '*S*': 0.00; 'parameter': 0.09; 'def': 0.12; '(b,': 0.16; '-tkc': 0.16; 'from:addr:python.list': 0.16; 'from:addr:tim.thechases.com': 0.16; 'from:name:tim chase': 0.16; 'received:174.136': 0.16; 'url:peps': 0.16; 'wrote:': 0.18; '>>>': 0.22; 'print': 0.22; 'url:dev': 0.24; 'header:In-Reply-To:1': 0.27; 'url:python': 0.33; 'charset:us-ascii': 0.36; 'url:org': 0.36; 'received:10': 0.37; 'to:addr:python-list': 0.38; 'to:addr:python.org': 0.39; 'first': 0.61 X-Sender-Id: wwwh|x-authuser|tim@thechases.com X-Sender-Id: wwwh|x-authuser|tim@thechases.com X-MC-Relay: Neutral X-MailChannels-SenderId: wwwh|x-authuser|tim@thechases.com X-MailChannels-Auth-Id: wwwh X-MC-Loop-Signature: 1423155539739:3764934912 X-MC-Ingress-Time: 1423155539738 Date: Thu, 5 Feb 2015 11:00:46 -0600 From: Tim Chase To: python-list@python.org Subject: Re: meaning of: line, = In-Reply-To: <6304fe65-0606-40eb-8732-c9ba9ae168e7@googlegroups.com> References: <07f4498c-7917-4315-85d4-73283a830f2d@googlegroups.com> <54d33aa6$0$13003$c3e8da3$5496439d@news.astraweb.com> <6304fe65-0606-40eb-8732-c9ba9ae168e7@googlegroups.com> X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.10; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-AuthUser: tim@thechases.com 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: 16 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1423155551 news.xs4all.nl 2956 [2001:888:2000:d::a6]:36363 X-Complaints-To: abuse@xs4all.nl X-Received-Bytes: 3195 X-Received-Body-CRC: 435235316 Xref: csiph.com comp.lang.python:85263 On 2015-02-05 08:45, Rustom Mody wrote: > > >>> def f(a, (b, c)): > > ... print a, b, c > > What the hell is that?! > First I am hearing/seeing it. > Whats it called? "tuple parameter unpacking", removed in Py3 https://www.python.org/dev/peps/pep-3113/ -tkc