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

2012-07-12 Thread Ryan Paullin
looks like theres no forgiveness except for dj yoda On Thu, Jul 12, 2012 at 3:00 AM, 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 > o

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

2012-07-12 Thread Ryan Paullin
<- its just my gmail face On Thu, Jul 12, 2012 at 3:30 AM, Ryan Paullin wrote: > looks like theres no forgiveness except for dj yoda > > > On Thu, Jul 12, 2012 at 3:00 AM, wrote: > >> Send Python-Dev mailing list submissions to >> python-dev@python.org >> >> To subscribe or unsubscribe

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

2012-07-12 Thread Ryan Paullin
$ python -m timeit -s 'import test' 'list(test.grouper(2,"abcdef"))' 10 loops, best of 3: 5.34 usec per loop $ python -m timeit -s 'import test' 'test.grouper(2,"abcdef")' 10 loops, best of 3: 2.19 usec per loop $ python -m timeit -s 'import test' 'list(test.chunks(2,"abcdef"))' 10 loop

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

2012-07-12 Thread R. David Murray
On Thu, 12 Jul 2012 03:34:20 -0700, Ryan Paullin wrote: > $ python -m timeit -s 'import test' 'list(test.grouper(2,"abcdef"))' > 10 loops, best of 3: 5.34 usec per loop > $ python -m timeit -s 'import test' 'test.grouper(2,"abcdef")' > 10 loops, best of 3: 2.19 usec per loop > $ python -m

Re: [Python-Dev] How to recruit open-source contributors – The Story of Data

2012-07-12 Thread Antoine Pitrou
On Wed, 11 Jul 2012 19:54:33 -0500 Steve Holden wrote: > Interesting article about Gentoo's approach to developer recruitment from > GSoC: > > http://redmonk.com/dberkholz/2012/07/10/how-to-recruit-open-source-contributors/ This is quite an interesting article, but I don't think we are that hig