Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!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.005 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'python,': 0.02; 'python': 0.09; 'backslash': 0.09; 'formatted': 0.09; ':-)': 0.13; '*any*': 0.16; 'crop': 0.16; 'driscoll': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'oct': 0.16; 'wrote:': 0.17; 'code.': 0.20; 'received:209.85.214.174': 0.21; 'header:In-Reply- To:1': 0.25; 'am,': 0.27; 'c++': 0.27; 'message- id:@mail.gmail.com': 0.27; 'lines': 0.28; '(my': 0.29; 'fri,': 0.30; 'could': 0.32; 'to:addr:python-list': 0.33; 'skip:b 20': 0.34; 'received:google.com': 0.34; 'project': 0.34; 'received:209.85': 0.35; 'there': 0.35; 'characters': 0.36; 'bad': 0.37; 'received:209': 0.37; 'subject:: ': 0.38; 'to:addr:python.org': 0.39; 'received:209.85.214': 0.39; 'where': 0.40; 'subject:-': 0.40; 'header:Received:5': 0.40; "they'd": 0.84; 'hate': 0.93 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:to :content-type; bh=C8Zgn1qY8L0EPyUNk7pUbBGfYfpdPGDFTF4lM6qVAd8=; b=XCFwtq4mI4rufEW3grD8AOzNkiG+3SkIYdINnUaeje2e5K/LcyS0ixE+xZ5nBTeZtf SUMaUneUqiWPB/9iSBC3YIxfH9OoURGDsDn1THg42OYTOaVaIREP41rW0pj/VirAHIyt 0JrOt4B1rbf+f2iJ1dLVvdiq2DZ6S2Wod5r4sabcg8EtqzHhBz6OJss5EWZSm36zqB8b FFNs+8+U6jfPWPM+GJ9WPvyZhsPpPj+Kech8NtyMuR5nwcN8OSeYb96QvrE1YqrQMa3k Wt0SFnZT17pMAdA++X0AcWK+NwKer3yZYAu+Geqgx9ti8OphQc6fvLSPpLL33/kHo6uW TIlQ== MIME-Version: 1.0 In-Reply-To: <50802B5B.6040902@cs.wisc.edu> References: <50802B5B.6040902@cs.wisc.edu> Date: Fri, 19 Oct 2012 03:26:10 +1100 Subject: Re: A desperate lunge for on-topic-ness From: Chris Angelico To: python-list@python.org 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: 16 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1350577573 news.xs4all.nl 6910 [2001:888:2000:d::a6]:53232 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:31664 On Fri, Oct 19, 2012 at 3:16 AM, Evan Driscoll wrote: > Python isn't as bad as C++ though (my main other language), where > 80 characters can go by *very* quickly. > > 2. Backslash continuations are *terrible*. I hate them with a firery > passion. :-) A line could be 1000 characters long and it would be > better than a 120-character line backslash-continued. I have one mid-sized C++ project at work that's pretty much exclusively under my control. There is precisely ONE place where backslash continuations crop up, and that's long strings that want to be formatted on multiple lines (eg huge SQL statements) - in Python, they'd be trip-quoted. We don't have *any* backslash continuations in Python code. ChrisA