[Python-Dev] Python-Dev Digest, Vol 108, Issue 14

Ryan Paullin ryanpaullin at gmail.com
Thu Jul 12 12:34:20 CEST 2012


$ python -m timeit -s 'import test' 'list(test.grouper(2,"abcdef"))'
100000 loops, best of 3: 5.34 usec per loop
$ python -m timeit -s 'import test' 'test.grouper(2,"abcdef")'
100000 loops, best of 3: 2.19 usec per loop
$ python -m timeit -s 'import test' 'list(test.chunks(2,"abcdef"))'
100000 loops, best of 3: 2.85 usec per loop
$ python -m timeit -s 'import test' 'test.chunks(2,"abcdef")'
1000000 loops, best of 3: 0.685 usec per loop

some woman wrote this



On Thu, Jul 12, 2012 at 3:31 AM, Ryan Paullin <ryanpaullin at gmail.com> wrote:

> <- its just my gmail face
>
>
> On Thu, Jul 12, 2012 at 3:30 AM, Ryan Paullin <ryanpaullin at gmail.com>wrote:
>
>> looks like theres no forgiveness except for dj yoda
>>
>>
>> On Thu, Jul 12, 2012 at 3:00 AM, <python-dev-request at python.org> wrote:
>>
>>> Send Python-Dev mailing list submissions to
>>>         python-dev at python.org
>>>
>>> To subscribe or unsubscribe via the World Wide Web, visit
>>>         http://mail.python.org/mailman/listinfo/python-dev
>>> or, via email, send a message with subject or body 'help' to
>>>         python-dev-request at python.org
>>>
>>> You can reach the person managing the list at
>>>         python-dev-owner at python.org
>>>
>>> When replying, please edit your Subject line so it is more specific
>>> than "Re: Contents of Python-Dev digest..."
>>>
>>>
>>> Today's Topics:
>>>
>>>    1. Fwd: How to recruit open-source contributors ? The Story of
>>>       Data (Steve Holden)
>>>
>>>
>>> ----------------------------------------------------------------------
>>>
>>> Message: 1
>>> Date: Wed, 11 Jul 2012 19:54:33 -0500
>>> From: Steve Holden <steve at holdenweb.com>
>>> To: Arc Riley <arcriley at gmail.com>
>>> Cc: python-dev at python.org
>>> Subject: [Python-Dev] Fwd: How to recruit open-source contributors ?
>>>         The Story of Data
>>> Message-ID: <44E4E015-4C35-4265-A4EF-51B2D3A64086 at holdenweb.com>
>>> Content-Type: text/plain; charset="us-ascii"
>>>
>>> Interesting article about Gentoo's approach to developer recruitment
>>> from GSoC:
>>>
>>>
>>> http://redmonk.com/dberkholz/2012/07/10/how-to-recruit-open-source-contributors/
>>>
>>> S
>>> --
>>> Steve Holden steve at holdenweb.com,  Holden Web, LLC http://holdenweb.com/
>>> Python classes (and much more) through the web http://oreillyschool.com/
>>> Conferences and technical event management at http://theopenbastion.com/
>>> Next:           DjangoCon US Sep 6-8, Washington DC http://djangocon.us/
>>>
>>>
>>>
>>> -------------- next part --------------
>>> An HTML attachment was scrubbed...
>>> URL: <
>>> http://mail.python.org/pipermail/python-dev/attachments/20120711/0a6e9085/attachment-0001.html
>>> >
>>>
>>> ------------------------------
>>>
>>> _______________________________________________
>>> Python-Dev mailing list
>>> Python-Dev at python.org
>>> http://mail.python.org/mailman/listinfo/python-dev
>>>
>>>
>>> End of Python-Dev Digest, Vol 108, Issue 14
>>> *******************************************
>>>
>>
>>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/python-dev/attachments/20120712/a103d264/attachment.html>


More information about the Python-Dev mailing list