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] 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 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
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