[issue5896] timeit documentation

2009-06-27 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed in r73595. Thanks! -- nosy: +ezio.melotti resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker ___

[issue5896] timeit documentation

2009-05-01 Thread how rabbit feels
New submission from how rabbit feels : It should be noted in the documentation that the 'setup' argument may be a semicolon delimited list of imports: Example: t = timeit.Timer('squeezer.testRegular()', 'import squeezer; from squeezer import myStaticData1, myStaticData2, testRegular') relat