Path: csiph.com!usenet.pasdenom.info!news.albasani.net!newsfeed.freenet.ag!news2.euro.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.023 X-Spam-Evidence: '*H*': 0.95; '*S*': 0.00; 'continuation': 0.07; 'backslash': 0.09; 'unexpected': 0.09; 'backslash,': 0.16; 'next.': 0.16; 'oct': 0.16; 'wrote:': 0.17; 'thu,': 0.17; 'visible': 0.22; 'statement': 0.23; 'seems': 0.23; 'header:In- Reply-To:1': 0.25; 'am,': 0.27; 'wonder': 0.27; 'message- id:@mail.gmail.com': 0.27; "doesn't": 0.28; 'went': 0.28; 'actual': 0.28; 'accidentally': 0.29; 'whitespace': 0.29; 'character': 0.29; 'error': 0.30; 'to:addr:python-list': 0.33; 'received:google.com': 0.34; 'problem,': 0.35; 'continue': 0.35; 'received:209.85': 0.35; 'but': 0.36; 'editor': 0.37; 'received:209': 0.37; 'subject:: ': 0.38; 'to:addr:python.org': 0.39; 'skip:" 10': 0.40; 'subject:-': 0.40; 'header:Received:5': 0.40; 'your': 0.60; 'to:name:python': 0.84; 'angel': 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=tKo7E13Rc8jLCuatK0+Zpni+EtYZEfb7018WdxIkEO8=; b=XKqmDLTHEHADzg7EltQB8fb65eM1P/kFQ7ynKcNottLXhim0Mh+C9eEJocX0ATwg8k ZPudsXdrYREag4Wi4MWca/X3hZ3wmggimyJ37PiJLhluwJC/KpqqEKBiKeWO3Y3t0ka0 1iXcErJoVFBN3sgJeyMNbkqm8rPoGVLW2t3qHNxmfQWCl/0RukN3+Be+EbTBJJVDDRs7 X7efgIz4mKy6wYrwUib7aUZarTLvL1AzsUsSjtCOLcGmeXnM4mQzMHMqHW0mCTXaSt9i 0CyhScAFZAYoUWGfoCo36iCJhjyTPtspluEkhm+QzTcQgQrgSbxE2YbwDCrPW0idDHLD L6Gw== MIME-Version: 1.0 In-Reply-To: <508032B4.5040303@davea.name> References: <50802B5B.6040902@cs.wisc.edu> <508032B4.5040303@davea.name> From: Ian Kelly Date: Thu, 18 Oct 2012 15:02:18 -0600 Subject: Re: A desperate lunge for on-topic-ness 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: 1350594176 news.xs4all.nl 6964 [2001:888:2000:d::a6]:59544 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:31684 On Thu, Oct 18, 2012 at 10:47 AM, Dave Angel wrote: > I never use the backslash at end-of-line to continue a statement to the > next. Not only is it a readability problem, but if your editor doesn't > have visible spaces, you can accidentally have whitespace after the > backslash, and wonder what went wrong. Note the actual error message that you get in this case is: "SyntaxError: unexpected character after line continuation character" Seems pretty transparent to me.