Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed3.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.062 X-Spam-Evidence: '*H*': 0.88; '*S*': 0.00; '2.7': 0.14; 'changes': 0.15; '1e+30': 0.16; 'from:addr:pobox.com': 0.16; 'from:addr:skip': 0.16; 'repr': 0.16; ':-)': 0.16; 'sender:addr:gmail.com': 0.17; 'slightly': 0.19; '>>>': 0.22; 'skip': 0.24; 'sort': 0.25; 'values': 0.27; 'header:In-Reply- To:1': 0.27; 'fixed': 0.29; 'related': 0.29; 'message- id:@mail.gmail.com': 0.30; 'problem': 0.35; 'problem.': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'picking': 0.36; 'to:addr:python-list': 0.38; 'to:addr:python.org': 0.39; 'back': 0.62; 'more': 0.64; 'great': 0.65; 'size.': 0.65; 'glance': 0.84; 'presumably': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type; bh=AGTi0+ppo0C80nHK9/M2JEordnByu84lsXHGt7SDA0g=; b=xqjdgDZzMWBTZ+o02FRb1+lpiIQwWx0ejtX53YbHERYsSBcozks8QwCoN03wroKj1G 5kp3WKl5yMyOKVcWqH5CytVh1ZXBnvmDOa1gJBzqDiSo41xHvwPw+S+RblsFRB1kkOx0 SjO0BmferrmgCVVUm7C4XZhi/ZZ4Ig6XE+uSESC1YfvKT2r2uzEEzN6i2Ao3y9AeBNEl YEnJ1MmIfuu6le1Gp/4AmV5HQ3k2rZ1VBUUc799/7sbsUZLy9mMYMfOb6FrszPj1sQ+G 67iseXhpbkhQWEgSruwL1L/X9Ng2ez0YCBykp2iPAbH+DW+coUIlJC/aKI657gfHKuXO jCjA== MIME-Version: 1.0 X-Received: by 10.43.77.137 with SMTP id zi9mr21835362icb.106.1375293904438; Wed, 31 Jul 2013 11:05:04 -0700 (PDT) Sender: skip.montanaro@gmail.com In-Reply-To: References: <51F6C5F5.5020201@Gmail.com> <51f6e1d8$0$30000$c3e8da3$5496439d@news.astraweb.com> <51F6ED13.5010508@Gmail.com> Date: Wed, 31 Jul 2013 13:05:04 -0500 X-Google-Sender-Auth: S-A8uOvE3B0gcu0K0y67izL1MjE Subject: Re: PEP8 79 char max From: Skip Montanaro To: Python Content-Type: text/plain; charset=UTF-8 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: 1375293913 news.xs4all.nl 15866 [2001:888:2000:d::a6]:41470 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:51680 => Works great until one of the values changes in size. Slightly off-topic, but still sort of related (talking about the size of things), I started picking 1e+30 as my "really big" some time back because the repr of 1e+99 required more than a glance when it appeared in printed output: >>> repr(1e+30) '1e+30' >>> repr(1e+99) '9.9999999999999997e+98' This problem was fixed in 2.7 (and presumably in 3.something as well), but it used to be a problem. :-) Skip