Message from discussion
Article on the future of Python
Received: by 10.224.189.75 with SMTP id dd11mr873894qab.6.1348674330563;
Wed, 26 Sep 2012 08:45:30 -0700 (PDT)
Received: by 10.52.37.74 with SMTP id w10mr287441vdj.8.1348674330483; Wed, 26
Sep 2012 08:45:30 -0700 (PDT)
Path: e10ni53868478qan.0!nntp.google.com!l8no11698391qao.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail
Newsgroups: comp.lang.python
Date: Wed, 26 Sep 2012 08:45:30 -0700 (PDT)
In-Reply-To: <mailman.1443.1348672708.27098.python-list@python.org>
Complaints-To: groups-abuse@google.com
Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=81.62.66.29; posting-account=ung4FAoAAAC46zhHJ0Nsnuox7M5gDvs_
NNTP-Posting-Host: 81.62.66.29
References: <mailman.1294.1348560867.27098.python-list@python.org>
<mailman.1333.1348581385.27098.python-list@python.org> <k3ssuq$78m$1@reader1.panix.com>
<cc2771fd-0b2b-4721-9ae0-657bc722ebad@googlegroups.com> <ef917cfd-43a5-4620-a9b4-1c6934624bc4@googlegroups.com>
<5062ad83$0$29997$c3e8da3$5496439d@news.astraweb.com> <693ac61b-b1d3-4192-9e50-5166fd119278@googlegroups.com>
<mailman.1420.1348653316.27098.python-list@python.org> <447851a9-bc63-4711-a4e6-bff565e28f1f@googlegroups.com>
<mailman.1438.1348669456.27098.python-list@python.org> <2b2d20f5-2807-4a61-b284-8075e900db22@googlegroups.com>
<k3v5p5$uuo$1@ger.gmane.org> <mailman.1443.1348672708.27098.python-list@python.org>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <2f605c2b-c2e3-4af4-be5d-019d2799f6d1@googlegroups.com>
Subject: Re: Article on the future of Python
From: wxjmfa...@gmail.com
Cc: python-l...@python.org
Injection-Date: Wed, 26 Sep 2012 15:45:30 +0000
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable
Sorry guys, I'm "only" able to see this
(with the Python versions an end user can
download):
>>> timeit.repeat("('=E4=BD=A0'*10000).replace('=E4=BD=A0', 'a')")
[31.44532887821319, 31.409585124813844, 31.40705548932476]
>>> timeit.repeat("('=E4=BD=A0'*10000).replace('=E4=BD=A0', 'a')")
[323.56687741054805, 323.1660997337247, 325.52611455786905]
>>> timeit.repeat("('\u2207'*10000).replace('\u2207', 'a')")
[31.48614883771855, 31.472262820580987, 31.467803762040184]
>>> timeit.repeat("('\u2207'*10000).replace('\u2207', 'a')")
[320.55378064913526, 321.6890182785167, 321.4132045160866]
(Will wait for the final)
jmf