summaryrefslogtreecommitdiff
path: root/Lib/test/test_timeit.py
Commit message (Expand)AuthorAgeFilesLines
* Remove unused imports.Serhiy Storchaka2016-12-161-1/+0
* Issue #28469: timeit now uses the sequence 1, 2, 5, 10, 20, 50,... insteadSerhiy Storchaka2016-10-231-25/+38
* timeit: add newlines to output for readabilityVictor Stinner2016-10-181-0/+4
* timeit: add nsec (nanosecond) unit for format timingsVictor Stinner2016-10-181-1/+1
* timeit: enhance format of raw timings (in verbose mode)Victor Stinner2016-10-181-2/+2
* timeit: remove --clock and --time optionsVictor Stinner2016-10-181-12/+0
* timeit: change default repeat to 5, instead of 3Victor Stinner2016-10-181-17/+17
* timeit: start autorange with 1 iteration, not 10Victor Stinner2016-10-181-14/+21
* Issue6422 add autorange method to timeit.TimerSteven D'Aprano2016-08-151-0/+22
* Issue #24631: Fixed regression in the timeit modulu with multyline setup.Serhiy Storchaka2015-07-151-2/+8
* Issue #5633: Fixed timeit when the statement is a string and the setup is not.Serhiy Storchaka2015-05-301-0/+7
|\
| * Issue #5633: Fixed timeit when the statement is a string and the setup is not.Serhiy Storchaka2015-05-301-0/+7
* | Issue #21741: Update 147 test modules to use test discovery.Zachary Ware2015-04-131-5/+1
* | Issue #18983: Allow selection of output units in timeit.Robert Collins2015-03-181-0/+20
* | Issue #18518: timeit now rejects statements which can't be compiled outsideSerhiy Storchaka2015-01-261-0/+12
|\ \ | |/
| * Issue #18518: timeit now rejects statements which can't be compiled outsideSerhiy Storchaka2015-01-261-0/+12
* | Issue #2527: Add a *globals* argument to timeit functions, in order to overri...Antoine Pitrou2014-08-221-2/+14
|/
* skip if __doc__ is goneBenjamin Peterson2012-10-121-0/+1
* #11578: add unit tests for timeit module.R David Murray2011-03-161-0/+305