Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!aioe.org!feeder.news-service.com!news2.euro.net!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.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'elif': 0.04; 'python': 0.08; '3.x': 0.09; 'assert': 0.09; 'from:addr:ethan': 0.09; 'from:addr:stoneleaf.us': 0.09; 'from:name:ethan furman': 0.09; 'message-id:@stoneleaf.us': 0.09; 'received:gator410.hostgator.com': 0.09; '~ethan~': 0.09; 'def': 0.12; 'wrote:': 0.14; 'lambda': 0.16; 'received:72.11': 0.16; 'received:72.11.125': 0.16; 'received:72.11.125.166': 0.16; 'subject:behavior': 0.16; 'subject:list': 0.19; 'yield': 0.19; 'header:In-Reply-To:1': 0.21; 'say,': 0.22; 'pass': 0.27; 'raise': 0.28; 'import': 0.29; "python's": 0.29; 'class': 0.29; 'to:addr :python-list': 0.33; 'break': 0.33; 'list': 0.33; 'things': 0.33; 'header:User-Agent:1': 0.35; 'cc:2**1': 0.35; 'else': 0.35; 'none': 0.37; 'keywords': 0.37; 'url:docs': 0.37; 'url:python': 0.38; 'url:org': 0.38; 'subject:: ': 0.38; 'to:addr:python.org': 0.39; 'received:websitewelcome.com': 0.67; 'received:69.93': 0.67 Date: Fri, 27 May 2011 11:56:04 -0700 From: Ethan Furman User-Agent: Thunderbird 1.5.0.10 (Windows/20070221) MIME-Version: 1.0 To: Python Subject: Re: Puzzled by list-appending behavior References: <16c21256-48df-416a-971f-de49ca4cc981@x6g2000yqj.googlegroups.com> <829f09b0-8f46-4ef0-9d25-e15a1629e22d@h12g2000pro.googlegroups.com> <4ddf0584$0$29996$c3e8da3$5496439d@news.astraweb.com> <4ddf2003$0$29996$c3e8da3$5496439d@news.astraweb.com> <0604E20B5F6F2F4784C9C8C71C5DD4DD2DA44B1ADD@EMARC112VS01.exchad.jpmchase.net> In-Reply-To: <0604E20B5F6F2F4784C9C8C71C5DD4DD2DA44B1ADD@EMARC112VS01.exchad.jpmchase.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - gator410.hostgator.com X-AntiAbuse: Original Domain - python.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - stoneleaf.us X-Source: X-Source-Args: X-Source-Dir: X-Source-Sender: mail.admailinc.com ([192.168.10.136]) [72.11.125.166]:1782 X-Source-Auth: ethan+stoneleaf.us X-Email-Count: 3 X-Source-Cap: dG9idWs7dG9idWs7Z2F0b3I0MTAuaG9zdGdhdG9yLmNvbQ== X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 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: 82.94.164.166 X-Trace: 1306521804 news.xs4all.nl 49182 [::ffff:82.94.164.166]:34171 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:6425 Prasad, Ramit wrote: >> I have to say, I do like Python's lack of keywords for these things > > I thought True/False were among the list of keywords in Python 3.x ? Or are those the only keywords? http://docs.python.org/py3k/reference/lexical_analysis.html#keywords False class finally is return None continue for lambda try True def from nonlocal while and del global not with as elif if or yield assert else import pass break except in raise ~Ethan~