[issue15183] it should be made clear that the statement in the --setup option and the setup kw arg aren't included in the count

2015-04-21 Thread A.M. Kuchling
A.M. Kuchling added the comment: Committed to 3.4 and default. Thanks for your patch! -- nosy: +akuchling resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___

[issue15183] it should be made clear that the statement in the --setup option and the setup kw arg aren't included in the count

2015-04-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset e0e3d2ec56b6 by Andrew Kuchling in branch '3.4': #15183: clarify timeit documentation to say that setup statement isn't timed https://hg.python.org/cpython/rev/e0e3d2ec56b6 -- nosy: +python-dev ___ Python

[issue15183] it should be made clear that the statement in the --setup option and the setup kw arg aren't included in the count

2012-07-07 Thread Greg Roodt
Greg Roodt added the comment: Confirmed that the setup statement is correctly excluded from the overall timed run. I've updated the docstring and rst to make this clearer. -- keywords: +patch nosy: +groodt Added file: http://bugs.python.org/file26288/timeit_setup_clarification.diff _

[issue15183] it should be made clear that the statement in the --setup option and the setup kw arg aren't included in the count

2012-06-25 Thread Tshepang Lekhonkhobe
Tshepang Lekhonkhobe added the comment: sorry, I meant 'python -m timeit -h' -- ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue15183] it should be made clear that the statement in the --setup option and the setup kw arg aren't included in the count

2012-06-25 Thread Tshepang Lekhonkhobe
New submission from Tshepang Lekhonkhobe : I looked at 'python -m time -h' and the timeit doc, and it was not clear to me (after a quick read) that the statement(s) inside --setup option and setup keyword argument weren't included in the speed test. I had to check for myself by writing code.