Re: How to pass in argument to timeit.Timer

2007-04-30 Thread [EMAIL PROTECTED]
On Apr 30, 1:24 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > On Apr 28, 3:37 pm, "Gabriel Genellina" <[EMAIL PROTECTED]> > wrote: > > > > > En Sat, 28 Apr 2007 15:48:11 -0300, [EMAIL PROTECTED] > > <[EMAIL PROTECTED]> escribió: > > > > I have a function in my python like this: > > > def cal

Re: How to pass in argument to timeit.Timer

2007-04-30 Thread [EMAIL PROTECTED]
On Apr 28, 3:37 pm, "Gabriel Genellina" <[EMAIL PROTECTED]> wrote: > En Sat, 28 Apr 2007 15:48:11 -0300, [EMAIL PROTECTED] > <[EMAIL PROTECTED]> escribió: > > > I have a function in my python like this: > > def callFunc(line, no): > > # some code > > > And I want to do a performance test like

Re: How to pass in argument to timeit.Timer

2007-04-28 Thread Gabriel Genellina
En Sat, 28 Apr 2007 15:48:11 -0300, [EMAIL PROTECTED] <[EMAIL PROTECTED]> escribió: > I have a function in my python like this: > def callFunc(line, no): > # some code > > And I want to do a performance test like this: > for line in f: > for i in range(int(count)): > t