Path: csiph.com!usenet.pasdenom.info!aioe.org!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.003 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; '(at': 0.04; 'configure': 0.05; 'advocate': 0.07; 'suppose': 0.07; 'lines.': 0.09; 'repeated': 0.09; 'cc:addr:python-list': 0.11; 'adjacent': 0.16; 'finds': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'line),': 0.16; 'newlines': 0.16; 'pairs': 0.16; 'tabs': 0.16; 'whitespace.': 0.16; 'elements': 0.16; 'wrote:': 0.18; 'seems': 0.21; 'separate': 0.22; 'cc:addr:python.org': 0.22; 'case.': 0.24; 'cc:2**0': 0.24; 'header:In-Reply-To:1': 0.27; 'am,': 0.29; 'message-id:@mail.gmail.com': 0.30; 'code': 0.31; 'comments,': 0.31; 'horizontal': 0.31; 'vertical': 0.31; 'could': 0.34; 'editor': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'curious': 0.36; 'useful': 0.36; 'should': 0.36; 'little': 0.38; 'anything': 0.39; 'enough': 0.39; 'either': 0.39; 'how': 0.40; 'blank': 0.60; 'ian': 0.60; 'offer': 0.62; 'more': 0.64; 'benefit': 0.68; 'nobody': 0.68; 'jul': 0.74; 'to:none': 0.92 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:cc :content-type; bh=U5fxRHm3pmjWA1XquXweVsK95uXM63NcCPTwHyn7viM=; b=HoifF8e/Xu/P2VUevPpyY50gzeaCv8Ahyl7+m+HmDKRqEoi9Rc7kmGj3i9C9qJX674 BPjKqb1PLcN4v6BsSVSCfrLL7/oRRy7e4X9Tt0VZXiwUN3JVpu5l2X9zPEdu20w8f0OI 2zPR6GJ8w7n/7YMm4v7hSXVo6iOX+JYQjOVeDsJiy7bc5BwY3c42jSAzcYrrJciuSZDD 5ZcMKTNrEVStLrffEEIYEMz5F3RxDkMhCX8dsh9eKsDufZCdx9rAWnyQl6HPbvDuwy5F FMdTefwOGj5GRhmtEtAUL0NvG6gZMumGgpMyspzBxYPaV/lkSx005IEisnOGm/luEQPM 8Isg== MIME-Version: 1.0 X-Received: by 10.58.210.168 with SMTP id mv8mr17836211vec.12.1404602879994; Sat, 05 Jul 2014 16:27:59 -0700 (PDT) In-Reply-To: References: <22220d8c-af69-434b-9361-520e396e615e@googlegroups.com> Date: Sun, 6 Jul 2014 09:27:59 +1000 Subject: Re: PEP8 and 4 spaces From: Chris Angelico Cc: 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: 15 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1404602889 news.xs4all.nl 2954 [2001:888:2000:d::a6]:43475 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:74000 On Sun, Jul 6, 2014 at 4:57 AM, Ian Kelly wrote: > I find it a little curious that nobody ever seems to advocate the use > of vertical tabs instead of repeated newlines. It should offer the > same benefit as horizontal tabs, namely that one could then > independently configure one's editor to separate adjacent code > elements with the desired number of blank lines. But I suppose that > nobody finds that useful enough to bother with in the vertical case. How often do you ever have multiple consecutive blank lines? My newlines are either single (line end) or in pairs (one blank line), and I don't remember having anything else (at least, not intentionally). Greater separation than a blank line is provided by comments, not more whitespace. ChrisA