$ 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 <ryanpaul...@gmail.com> wrote: > <- its just my gmail face > > > On Thu, Jul 12, 2012 at 3:30 AM, Ryan Paullin <ryanpaul...@gmail.com>wrote: > >> looks like theres no forgiveness except for dj yoda >> >> >> On Thu, Jul 12, 2012 at 3:00 AM, <python-dev-requ...@python.org> wrote: >> >>> Send Python-Dev mailing list submissions to >>> python-dev@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-requ...@python.org >>> >>> You can reach the person managing the list at >>> python-dev-ow...@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 <st...@holdenweb.com> >>> To: Arc Riley <arcri...@gmail.com> >>> Cc: python-dev@python.org >>> Subject: [Python-Dev] Fwd: How to recruit open-source contributors ? >>> The Story of Data >>> Message-ID: <44e4e015-4c35-4265-a4ef-51b2d3a64...@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 st...@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@python.org >>> http://mail.python.org/mailman/listinfo/python-dev >>> >>> >>> End of Python-Dev Digest, Vol 108, Issue 14 >>> ******************************************* >>> >> >> >
_______________________________________________ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com