Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!feeds.news.ox.ac.uk!news.ox.ac.uk!news.stack.nl!newsfeed.xs4all.nl!newsfeed1a.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.036 X-Spam-Evidence: '*H*': 0.93; '*S*': 0.00; 'resulting': 0.04; 'compiler': 0.07; "subject:' ": 0.07; 'subject:string': 0.09; 'unary': 0.16; 'wrote:': 0.18; 'mon,': 0.24; 'header:In-Reply- To:1': 0.27; 'message-id:@mail.gmail.com': 0.30; 'constant': 0.31; 'operations.': 0.31; 'subject:with': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'done': 0.36; 'method': 0.36; 'error.': 0.37; 'example,': 0.37; 'to:addr:python-list': 0.38; 'skip:- 10': 0.38; 'pm,': 0.38; 'to:addr:python.org': 0.39; 'called': 0.40; 'no.': 0.61; 'mar': 0.68; 'outcome': 0.93 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=blkn0GGSZjICOx27YP+ytHzbl1GsjHn+rkwd/KG02c0=; b=zkRS7dYrstXbWqGLZdwoWfsCUDUn73vdqWyI9Z42yn2la5lh0+uOdFzOQ8oLtPdISA nPoWl2ML2LgvEx4i7xr/8YzLqXkpCGbHUJapQTnbfVCYpYwIQUFNIJXyrRPlUxYOH0eW dsJqWH7AND3x3NBAITfBMmTUG90lWoYXuWbD/56c+md9IZ5WBOc6IYMRmAGjNEkGj0zV nVyWQDWSSzja2Qdzu5wF6kHwMC786il2euNLURDQtmWhjFHtOhscKev1v+CEPeBbToej vmiC8Si+xUnUKyAqI/zrCRWZDOwUQwNHDpaX2JQs2J/I80zVPb+RszTRvuIWk2/2whT7 UJ2Q== X-Received: by 10.68.134.198 with SMTP id pm6mr27757807pbb.9.1395080925900; Mon, 17 Mar 2014 11:28:45 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <87y508r8ro.fsf@elektro.pacujo.net> References: <8c862bec-815e-424c-81e2-8f37ebab1c35@googlegroups.com> <87y508r8ro.fsf@elektro.pacujo.net> From: Ian Kelly Date: Mon, 17 Mar 2014 12:28:05 -0600 Subject: Re: 'complex' function with string argument. To: Python Content-Type: text/plain; charset=ISO-8859-1 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: 11 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1395080938 news.xs4all.nl 2907 [2001:888:2000:d::a6]:58506 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:68451 On Mon, Mar 17, 2014 at 12:15 PM, Marko Rauhamaa wrote: > Is "-2.0" a literal? > > What's the outcome of > > -2.0.__str__() No. The compiler will try to optimize it into a single constant if it can, but it has to be done in accordance with the order of operations. In that example, the __str__ method is called before the unary - is applied, resulting in an error.