Path: csiph.com!usenet.pasdenom.info!news.etla.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed2.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.004 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'syntax': 0.04; 'run-time': 0.05; 'subject:Python': 0.06; 'error:': 0.07; 'string': 0.09; 'parsing': 0.09; 'strings.': 0.09; 'unhandled': 0.09; 'python': 0.11; 'delimiters': 0.16; 'exception:': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; '>>>': 0.22; 'error': 0.23; 'subject:/': 0.26; 'header:In-Reply-To:1': 0.27; 'message- id:@mail.gmail.com': 0.30; '>>>>': 0.31; "d'aprano": 0.31; 'steven': 0.31; 'anyone': 0.31; 'file': 0.32; 'received:209.85': 0.35; 'received:google.com': 0.35; 'should': 0.36; 'error.': 0.37; 'received:209': 0.37; 'to:addr:python-list': 0.38; 'pm,': 0.38; "couldn't": 0.39; 'to:addr:python.org': 0.39; 'even': 0.60; 'course': 0.61; 'mar': 0.68; '26,': 0.68; 'subject:long': 0.84; '2013': 0.98 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:content-type; bh=hXBMvSncatBoA4I2P6QBOSHcujDW7MCq8IwOtjxQegk=; b=0sED3ld9tAVh8ZYbYSNNqex84a7lYILis6Fdvn2u/y4W5rE52qRxFlGYaaw8kcbgsP AxrwyTcTta2O2s+e2Nhjg1vW93C31q7R3oKg/YvyI+sciTATRsAUXrdKWpCcy30/S8lc ByatrxtWC5SW3CRnpuTcg849THyTFz2BxmR42cEThvVjeb4CdMof2bEBDgDJKjxnifpm 7jfVooM+h6lhWRotkTJTvyFFnEfkw2Y6PGpUlVlEHAv/IMtLlkj/1dwrBKgxK+qvNIK3 7k4TQQKJanJvZ+IMUDM7lregSq6M8B/RXsoTEh+OrrjvLOiPx/EtJb7kHBipO9f8dx++ pL+A== MIME-Version: 1.0 X-Received: by 10.52.37.109 with SMTP id x13mr16238278vdj.10.1364278326529; Mon, 25 Mar 2013 23:12:06 -0700 (PDT) In-Reply-To: <51512bb5$0$29973$c3e8da3$5496439d@news.astraweb.com> References: <5150e900$0$29998$c3e8da3$5496439d@news.astraweb.com> <51512bb5$0$29973$c3e8da3$5496439d@news.astraweb.com> Date: Tue, 26 Mar 2013 17:12:06 +1100 Subject: Re: Performance of int/long in Python 3 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: 19 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1364278330 news.xs4all.nl 6903 [2001:888:2000:d::a6]:56267 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:41853 On Tue, Mar 26, 2013 at 4:01 PM, Steven D'Aprano > No string methods? You were lucky. When I were a lad, you couldn't even > use "" delimiters for strings. > >>>> "b string" > Parsing error: file , line 1: > "b string" > ^ > Unhandled exception: run-time error: syntax error > > > Python 0.9.1. Well of course that's an error. Anyone can see it should have been: >>> "a string" *duck* ChrisA