"Fredrik Lundh" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
>
> > timeit -s "import test" "test.test3()"
> 100 loops, best of 3: 6.73 msec per loop
>
> > timeit -s "import test" "test.test4()"
> 1 loops, best of 3: 27.8 usec per loop
>
> that's a 240x slowdown. hmm.
>
>
>
>
W
Thanks for the great positive responses. I was close with what I was
trying, I guess, but close only counts in horseshoes and um..
something else that close counts in.
:-)
googleboy
--
http://mail.python.org/mailman/listinfo/python-list
"googleboy" <[EMAIL PROTECTED]> wrote:
> Hi.
>
> I am trying to collapse an html table into a single line. Basically,
> anytime I see ">" & "<" with nothing but whitespace between them, I'd
> like to remove all the whitespace, including newlines. I've read the
> how-to and I have tried a bunch of
Paul McGuire wrote:
> If you're absolutely stuck on using RE's, then others will have to step
> forward. Meanwhile, here's a pyparsing solution (get pyparsing at
> http://pyparsing.sourceforge.net):
so, let's see. using ...
from pyparsing import *
import re
data = """ ... table example from o
"googleboy" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hi.
>
> I am trying to collapse an html table into a single line. Basically,
> anytime I see ">" & "<" with nothing but whitespace between them, I'd
> like to remove all the whitespace, including newlines. I've read the
> h
googleboy a écrit :
> Hi.
>
> I am trying to collapse an html table into a single line. Basically,
> anytime I see ">" & "<" with nothing but whitespace between them, I'd
> like to remove all the whitespace, including newlines. I've read the
> how-to and I have tried a bunch of things, but noth
Hi.
I am trying to collapse an html table into a single line. Basically,
anytime I see ">" & "<" with nothing but whitespace between them, I'd
like to remove all the whitespace, including newlines. I've read the
how-to and I have tried a bunch of things, but nothing seems to work
for me:
--
t