Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!xlned.com!feeder7.xlned.com!newsfeed.xs4all.nl!newsfeed4.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.003 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'repository': 0.05; 'assign': 0.07; 'assignment': 0.07; 'builtin': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'python': 0.11; 'jan': 0.12; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'reedy': 0.16; 'syntaxerror:': 0.16; 'wrote:': 0.18; 'version.': 0.19; '>>>': 0.22; 'header:User- Agent:1': 0.23; 'refers': 0.24; 'header:X-Complaints-To:1': 0.27; 'header:In-Reply-To:1': 0.27; '"",': 0.31; '1.3': 0.31; '>>>>': 0.31; 'names.': 0.31; 'allows': 0.31; 'file': 0.32; 'subject:the': 0.34; 'but': 0.35; 'consistent': 0.36; 'keyword': 0.36; 'to:addr :python-list': 0.38; 'pm,': 0.38; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'release': 0.40; 'received:173': 0.61; 'email addr:gmail.com': 0.63; 'latest': 0.67; 'received:fios.verizon.net': 0.84; 'subject:True': 0.91; 'subject:Setting': 0.96 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Terry Reedy Subject: Re: Setting the value of True Date: Fri, 23 Aug 2013 19:56:28 -0400 References: <9da851be-9ab3-4984-8f3e-71582f8ff4da@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: pool-173-75-251-66.phlapa.fios.verizon.net User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130801 Thunderbird/17.0.8 In-Reply-To: <9da851be-9ab3-4984-8f3e-71582f8ff4da@googlegroups.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: 22 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1377302205 news.xs4all.nl 15872 [2001:888:2000:d::a6]:48351 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:52917 On 8/23/2013 7:38 PM, jeangawron@gmail.com wrote: > Python allows you set the value of True Unqualified 'Python', used in the present tense, refers to the latest release or repository version. >>> True = 1.3 SyntaxError: assignment to keyword >>>> True = 1.3 > > Now this is consistent with the decision to let you set the > value of various builtin names. But why is this case different: > >>>> None = 1.3 > File "", line 1 > SyntaxError: cannot assign to None -- Terry Jan Reedy